| 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 extern const char kNoEvents[]; | 124 extern const char kNoEvents[]; |
| 125 extern const char kNoFirstRun[]; | 125 extern const char kNoFirstRun[]; |
| 126 extern const char kNoJsRandomness[]; | 126 extern const char kNoJsRandomness[]; |
| 127 extern const char kNoProxyServer[]; | 127 extern const char kNoProxyServer[]; |
| 128 extern const char kNoSandbox[]; | 128 extern const char kNoSandbox[]; |
| 129 extern const char kOmniBoxPopupCount[]; | 129 extern const char kOmniBoxPopupCount[]; |
| 130 extern const char kOpenInNewWindow[]; | 130 extern const char kOpenInNewWindow[]; |
| 131 extern const char kPackExtension[]; | 131 extern const char kPackExtension[]; |
| 132 extern const char kPackExtensionKey[]; | 132 extern const char kPackExtensionKey[]; |
| 133 extern const char kParentProfile[]; | 133 extern const char kParentProfile[]; |
| 134 extern const char kPinnedTabCount[]; | |
| 135 extern const char kPlaybackMode[]; | 134 extern const char kPlaybackMode[]; |
| 136 extern const char kPluginDataDir[]; | 135 extern const char kPluginDataDir[]; |
| 137 extern const char kPluginLauncher[]; | 136 extern const char kPluginLauncher[]; |
| 138 extern const char kPluginPath[]; | 137 extern const char kPluginPath[]; |
| 139 extern const char kPluginProcess[]; | 138 extern const char kPluginProcess[]; |
| 140 extern const char kPluginStartupDialog[]; | 139 extern const char kPluginStartupDialog[]; |
| 141 extern const char kPrint[]; | 140 extern const char kPrint[]; |
| 142 extern const char kProcessPerSite[]; | 141 extern const char kProcessPerSite[]; |
| 143 extern const char kProcessPerTab[]; | 142 extern const char kProcessPerTab[]; |
| 144 extern const char kProfileImportProcess[]; | 143 extern const char kProfileImportProcess[]; |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 extern const char kGearsPluginPathOverride[]; | 223 extern const char kGearsPluginPathOverride[]; |
| 225 extern const char kInvalidateSyncLogin[]; | 224 extern const char kInvalidateSyncLogin[]; |
| 226 #endif | 225 #endif |
| 227 | 226 |
| 228 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 227 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 229 // alphabetical order, or in one of the ifdefs (also in order in each section). | 228 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 230 | 229 |
| 231 } // namespace switches | 230 } // namespace switches |
| 232 | 231 |
| 233 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 232 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |