| 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 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 330 extern const char kDisableContextualSearch[]; | 330 extern const char kDisableContextualSearch[]; |
| 331 extern const char kDisableZeroSuggest[]; | 331 extern const char kDisableZeroSuggest[]; |
| 332 extern const char kEnableAccessibilityTabSwitcher[]; | 332 extern const char kEnableAccessibilityTabSwitcher[]; |
| 333 extern const char kEnableContextualSearch[]; | 333 extern const char kEnableContextualSearch[]; |
| 334 extern const char kEnableDomDistillerButtonAnimation[]; | 334 extern const char kEnableDomDistillerButtonAnimation[]; |
| 335 extern const char kEnableHostedMode[]; | 335 extern const char kEnableHostedMode[]; |
| 336 extern const char kEnableReaderModeToolbarIcon[]; | 336 extern const char kEnableReaderModeToolbarIcon[]; |
| 337 extern const char kEnableZeroSuggestMostVisited[]; | 337 extern const char kEnableZeroSuggestMostVisited[]; |
| 338 extern const char kEnableZeroSuggestMostVisitedWithoutSerp[]; | 338 extern const char kEnableZeroSuggestMostVisitedWithoutSerp[]; |
| 339 extern const char kPrefetchSearchResults[]; | 339 extern const char kPrefetchSearchResults[]; |
| 340 extern const char kProgressBarAnimation[]; |
| 340 #endif // defined(OS_ANDROID) | 341 #endif // defined(OS_ANDROID) |
| 341 | 342 |
| 342 #if defined(USE_ASH) | 343 #if defined(USE_ASH) |
| 343 extern const char kOpenAsh[]; | 344 extern const char kOpenAsh[]; |
| 344 #endif | 345 #endif |
| 345 | 346 |
| 346 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) | 347 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) |
| 347 extern const char kHelp[]; | 348 extern const char kHelp[]; |
| 348 extern const char kHelpShort[]; | 349 extern const char kHelpShort[]; |
| 349 extern const char kPasswordStore[]; | 350 extern const char kPasswordStore[]; |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 421 #if defined(ENABLE_TASK_MANAGER) | 422 #if defined(ENABLE_TASK_MANAGER) |
| 422 bool NewTaskManagerEnabled(); | 423 bool NewTaskManagerEnabled(); |
| 423 #endif // defined(ENABLE_TASK_MANAGER) | 424 #endif // defined(ENABLE_TASK_MANAGER) |
| 424 | 425 |
| 425 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 426 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 426 // alphabetical order, or in one of the ifdefs (also in order in each section). | 427 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 427 | 428 |
| 428 } // namespace switches | 429 } // namespace switches |
| 429 | 430 |
| 430 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 431 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |