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