| 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 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 extern const char kDisableZeroSuggest[]; | 361 extern const char kDisableZeroSuggest[]; |
| 362 extern const char kEnableAccessibilityTabSwitcher[]; | 362 extern const char kEnableAccessibilityTabSwitcher[]; |
| 363 extern const char kEnableAppInstallAlerts[]; | 363 extern const char kEnableAppInstallAlerts[]; |
| 364 extern const char kEnableContextualSearch[]; | 364 extern const char kEnableContextualSearch[]; |
| 365 extern const char kEnableNewNTP[]; | 365 extern const char kEnableNewNTP[]; |
| 366 extern const char kEnableZeroSuggestEtherSerp[]; | 366 extern const char kEnableZeroSuggestEtherSerp[]; |
| 367 extern const char kEnableZeroSuggestEtherNoSerp[]; | 367 extern const char kEnableZeroSuggestEtherNoSerp[]; |
| 368 extern const char kEnableZeroSuggestMostVisited[]; | 368 extern const char kEnableZeroSuggestMostVisited[]; |
| 369 extern const char kEnableZeroSuggestPersonalized[]; | 369 extern const char kEnableZeroSuggestPersonalized[]; |
| 370 extern const char kEnableInstantSearchClicks[]; | 370 extern const char kEnableInstantSearchClicks[]; |
| 371 extern const char kEnableEmbeddedSearchAPI[]; | |
| 372 #endif | 371 #endif |
| 373 | 372 |
| 374 #if defined(USE_ASH) | 373 #if defined(USE_ASH) |
| 375 extern const char kOpenAsh[]; | 374 extern const char kOpenAsh[]; |
| 376 #endif | 375 #endif |
| 377 | 376 |
| 378 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) | 377 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) |
| 379 extern const char kPasswordStore[]; | 378 extern const char kPasswordStore[]; |
| 380 #endif | 379 #endif |
| 381 | 380 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 412 #endif | 411 #endif |
| 413 | 412 |
| 414 bool SettingsWindowEnabled(); | 413 bool SettingsWindowEnabled(); |
| 415 | 414 |
| 416 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 415 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 417 // alphabetical order, or in one of the ifdefs (also in order in each section). | 416 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 418 | 417 |
| 419 } // namespace switches | 418 } // namespace switches |
| 420 | 419 |
| 421 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 420 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |