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 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 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
312 extern const char kV8PacMojoOutOfProcess[]; | 312 extern const char kV8PacMojoOutOfProcess[]; |
313 extern const char kValidateCrx[]; | 313 extern const char kValidateCrx[]; |
314 extern const char kVersion[]; | 314 extern const char kVersion[]; |
315 extern const char kWindowPosition[]; | 315 extern const char kWindowPosition[]; |
316 extern const char kWindowSize[]; | 316 extern const char kWindowSize[]; |
317 extern const char kWinHttpProxyResolver[]; | 317 extern const char kWinHttpProxyResolver[]; |
318 extern const char kWinJumplistAction[]; | 318 extern const char kWinJumplistAction[]; |
319 | 319 |
320 #if defined(OS_ANDROID) | 320 #if defined(OS_ANDROID) |
321 extern const char kAuthAndroidNegotiateAccountType[]; | 321 extern const char kAuthAndroidNegotiateAccountType[]; |
| 322 extern const char kContextualSearchProcess[]; |
322 extern const char kDisableContextualSearch[]; | 323 extern const char kDisableContextualSearch[]; |
323 extern const char kEnableAccessibilityTabSwitcher[]; | 324 extern const char kEnableAccessibilityTabSwitcher[]; |
324 extern const char kEnableContextualSearch[]; | 325 extern const char kEnableContextualSearch[]; |
325 extern const char kEnableDomDistillerButtonAnimation[]; | 326 extern const char kEnableDomDistillerButtonAnimation[]; |
326 extern const char kEnableHostedMode[]; | 327 extern const char kEnableHostedMode[]; |
327 extern const char kEnableHungRendererInfoBar[]; | 328 extern const char kEnableHungRendererInfoBar[]; |
328 extern const char kProgressBarAnimation[]; | 329 extern const char kProgressBarAnimation[]; |
329 extern const char kEnableThemeColorInTabbedMode[]; | 330 extern const char kEnableThemeColorInTabbedMode[]; |
330 #endif // defined(OS_ANDROID) | 331 #endif // defined(OS_ANDROID) |
331 | 332 |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
416 #if defined(ENABLE_TASK_MANAGER) | 417 #if defined(ENABLE_TASK_MANAGER) |
417 bool NewTaskManagerEnabled(); | 418 bool NewTaskManagerEnabled(); |
418 #endif // defined(ENABLE_TASK_MANAGER) | 419 #endif // defined(ENABLE_TASK_MANAGER) |
419 | 420 |
420 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 421 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
421 // alphabetical order, or in one of the ifdefs (also in order in each section). | 422 // alphabetical order, or in one of the ifdefs (also in order in each section). |
422 | 423 |
423 } // namespace switches | 424 } // namespace switches |
424 | 425 |
425 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 426 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |