| OLD | NEW |
| 1 # Defines the Chromium style for automatic reformatting. | 1 # Defines the Chromium style for automatic reformatting. |
| 2 # http://clang.llvm.org/docs/ClangFormatStyleOptions.html | 2 # http://clang.llvm.org/docs/ClangFormatStyleOptions.html |
| 3 BasedOnStyle: Chromium | 3 BasedOnStyle: Chromium |
| 4 --- | 4 --- |
| 5 Language: Java | 5 Language: Java |
| 6 BasedOnStyle: Google | 6 BasedOnStyle: Google |
| 7 --- | 7 --- |
| 8 Language: ObjC | 8 Language: ObjC |
| 9 BasedOnStyle: Google |
| 10 BinPackParameters: false |
| 11 BinPackArguments: false |
| 9 ColumnLimit: 100 | 12 ColumnLimit: 100 |
| 10 BasedOnStyle: Google | 13 ObjCBlockIndentWidth: 2 |
| 14 AllowAllParametersOfDeclarationOnNextLine: true |
| 15 AlignOperands: false |
| 16 AlwaysBreakBeforeMultilineStrings: false |
| 17 AllowShortFunctionsOnASingleLine: Inline |
| 18 BreakBeforeTernaryOperators: false |
| 19 IndentWrappedFunctionNames: true |
| 20 ContinuationIndentWidth: 4 |
| 21 ObjCSpaceBeforeProtocolList: true |
| OLD | NEW |