| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 extern const char kProfilingFile[]; | 251 extern const char kProfilingFile[]; |
| 252 extern const char kProfilingFlush[]; | 252 extern const char kProfilingFlush[]; |
| 253 extern const char kPromoServerURL[]; | 253 extern const char kPromoServerURL[]; |
| 254 extern const char kNoProtector[]; | 254 extern const char kNoProtector[]; |
| 255 extern const char kProxyAutoDetect[]; | 255 extern const char kProxyAutoDetect[]; |
| 256 extern const char kProxyBypassList[]; | 256 extern const char kProxyBypassList[]; |
| 257 extern const char kProxyPacUrl[]; | 257 extern const char kProxyPacUrl[]; |
| 258 extern const char kProxyServer[]; | 258 extern const char kProxyServer[]; |
| 259 extern const char kPurgeMemoryButton[]; | 259 extern const char kPurgeMemoryButton[]; |
| 260 extern const char kReloadKilledTabs[]; | 260 extern const char kReloadKilledTabs[]; |
| 261 extern const char kRemoteDebuggingFrontend[]; |
| 261 extern const char kRemoteDebuggingPort[]; | 262 extern const char kRemoteDebuggingPort[]; |
| 262 extern const char kRestoreLastSession[]; | 263 extern const char kRestoreLastSession[]; |
| 263 extern const char kSbInfoURLPrefix[]; | 264 extern const char kSbInfoURLPrefix[]; |
| 264 extern const char kSbMacKeyURLPrefix[]; | 265 extern const char kSbMacKeyURLPrefix[]; |
| 265 extern const char kSbDisableAutoUpdate[]; | 266 extern const char kSbDisableAutoUpdate[]; |
| 266 extern const char kSbDisableDownloadProtection[]; | 267 extern const char kSbDisableDownloadProtection[]; |
| 267 extern const char kSearchInOmniboxHint[]; | 268 extern const char kSearchInOmniboxHint[]; |
| 268 extern const char kServiceAccountLsid[]; | 269 extern const char kServiceAccountLsid[]; |
| 269 extern const char kShowAutofillTypePredictions[]; | 270 extern const char kShowAutofillTypePredictions[]; |
| 270 extern const char kShowComponentExtensionOptions[]; | 271 extern const char kShowComponentExtensionOptions[]; |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 bool IsPrintPreviewEnabled(); | 376 bool IsPrintPreviewEnabled(); |
| 376 | 377 |
| 377 bool IsInBrowserThumbnailingEnabled(); | 378 bool IsInBrowserThumbnailingEnabled(); |
| 378 | 379 |
| 379 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 380 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 380 // alphabetical order, or in one of the ifdefs (also in order in each section). | 381 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 381 | 382 |
| 382 } // namespace switches | 383 } // namespace switches |
| 383 | 384 |
| 384 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 385 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |