| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 all the command-line switches used by Chrome. | 5 // Defines all the command-line switches used by Chrome. |
| 6 | 6 |
| 7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ | 7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ |
| 8 #define CHROME_COMMON_CHROME_SWITCHES_H_ | 8 #define CHROME_COMMON_CHROME_SWITCHES_H_ |
| 9 | 9 |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 extern const char kDumpHistogramsOnExit[]; | 62 extern const char kDumpHistogramsOnExit[]; |
| 63 extern const char kEnableApplicationCache[]; | 63 extern const char kEnableApplicationCache[]; |
| 64 extern const char kEnableBenchmarking[]; | 64 extern const char kEnableBenchmarking[]; |
| 65 extern const char kEnableDatabases[]; | 65 extern const char kEnableDatabases[]; |
| 66 extern const char kEnableDesktopNotifications[]; | 66 extern const char kEnableDesktopNotifications[]; |
| 67 extern const char kEnableExperimentalExtensionApis[]; | 67 extern const char kEnableExperimentalExtensionApis[]; |
| 68 extern const char kEnableExperimentalWebGL[]; | 68 extern const char kEnableExperimentalWebGL[]; |
| 69 extern const char kEnableExtensionTimelineApi[]; | 69 extern const char kEnableExtensionTimelineApi[]; |
| 70 extern const char kEnableFastback[]; | 70 extern const char kEnableFastback[]; |
| 71 extern const char kEnableFileCookies[]; | 71 extern const char kEnableFileCookies[]; |
| 72 extern const char kEnableLocalStorage[]; | 72 extern const char kDisableLocalStorage[]; |
| 73 extern const char kEnableLogging[]; | 73 extern const char kEnableLogging[]; |
| 74 extern const char kEnableMonitorProfile[]; | 74 extern const char kEnableMonitorProfile[]; |
| 75 extern const char kEnableNativeWebWorkers[]; | 75 extern const char kEnableNativeWebWorkers[]; |
| 76 extern const char kEnableRemoteFonts[]; | 76 extern const char kEnableRemoteFonts[]; |
| 77 extern const char kEnableRendererAccessibility[]; | 77 extern const char kEnableRendererAccessibility[]; |
| 78 extern const char kEnableSeccompSandbox[]; | 78 extern const char kEnableSeccompSandbox[]; |
| 79 extern const char kEnableSessionStorage[]; | 79 extern const char kEnableSessionStorage[]; |
| 80 extern const char kEnableStatsTable[]; | 80 extern const char kEnableStatsTable[]; |
| 81 extern const char kEnableTabtastic2[]; | 81 extern const char kEnableTabtastic2[]; |
| 82 extern const char kEnableUserDataDirProfiles[]; | 82 extern const char kEnableUserDataDirProfiles[]; |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 #endif | 202 #endif |
| 203 | 203 |
| 204 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 204 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 205 // alphabetical order, or in one of the ifdefs (also in order in each section). | 205 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 206 | 206 |
| 207 extern const char kEnableNewAutoFill[]; | 207 extern const char kEnableNewAutoFill[]; |
| 208 | 208 |
| 209 } // namespace switches | 209 } // namespace switches |
| 210 | 210 |
| 211 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 211 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |