clang-format produced code that (choose all that apply):
+ Doesn't match Chromium style
Here's the code before formatting:
if ([application respondsToSelector:
@selector(setAutomaticCustomizeTouchBarMenuItemEnabled:)]) {
[application setAutomaticCustomizeTouchBarMenuItemEnabled:YES];
}
Here's the code after formatting:
if ([application respondsToSelector:@selector
(setAutomaticCustomizeTouchBarMenuItemEnabled:)]) {
[application setAutomaticCustomizeTouchBarMenuItemEnabled:YES];
}
Here's how it ought to look:
if ([application respondsToSelector:
@selector(setAutomaticCustomizeTouchBarMenuItemEnabled:)]) {
[application setAutomaticCustomizeTouchBarMenuItemEnabled:YES];
}
Code review link for full files/context:https://codereview.chromium.org/2814683005
Comment 1 by spqc...@chromium.org
, Apr 14 2017