Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Defines the shared command-line switches used by code in the Chrome | 5 // Defines the shared command-line switches used by code in the Chrome |
| 6 // directory that don't have anywhere more specific to go. | 6 // directory that don't have anywhere more specific to go. |
| 7 | 7 |
| 8 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ | 8 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ |
| 9 #define CHROME_COMMON_CHROME_SWITCHES_H_ | 9 #define CHROME_COMMON_CHROME_SWITCHES_H_ |
| 10 | 10 |
| 11 #include "base/feature_list.h" | |
|
tapted
2017/03/13 02:03:06
nit: remove
| |
| 11 #include "build/build_config.h" | 12 #include "build/build_config.h" |
| 12 #include "chrome/common/features.h" | 13 #include "chrome/common/features.h" |
| 13 #include "ppapi/features/features.h" | 14 #include "ppapi/features/features.h" |
| 14 #include "printing/features/features.h" | 15 #include "printing/features/features.h" |
| 15 | 16 |
| 16 // Don't add more switch files here. This is linked into some places like the | 17 // Don't add more switch files here. This is linked into some places like the |
| 17 // installer where dependencies should be limited. Instead, have files | 18 // installer where dependencies should be limited. Instead, have files |
| 18 // directly include your switch file. | 19 // directly include your switch file. |
| 19 | 20 |
| 20 namespace base { | 21 namespace base { |
| (...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 367 #if defined(OS_WIN) | 368 #if defined(OS_WIN) |
| 368 bool GDITextPrintingEnabled(); | 369 bool GDITextPrintingEnabled(); |
| 369 #endif | 370 #endif |
| 370 | 371 |
| 371 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 372 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 372 // alphabetical order, or in one of the ifdefs (also in order in each section). | 373 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 373 | 374 |
| 374 } // namespace switches | 375 } // namespace switches |
| 375 | 376 |
| 376 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 377 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |