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 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
339 extern const char kPluginsMetadataServerURL[]; | 339 extern const char kPluginsMetadataServerURL[]; |
340 #endif | 340 #endif |
341 | 341 |
342 #if defined(OS_ANDROID) | 342 #if defined(OS_ANDROID) |
343 extern const char kDisableCast[]; | 343 extern const char kDisableCast[]; |
344 extern const char kDisableContextualSearch[]; | 344 extern const char kDisableContextualSearch[]; |
345 extern const char kDisableZeroSuggest[]; | 345 extern const char kDisableZeroSuggest[]; |
346 extern const char kEnableAccessibilityTabSwitcher[]; | 346 extern const char kEnableAccessibilityTabSwitcher[]; |
347 extern const char kEnableAppInstallAlerts[]; | 347 extern const char kEnableAppInstallAlerts[]; |
348 extern const char kEnableContextualSearch[]; | 348 extern const char kEnableContextualSearch[]; |
349 extern const char kEnableZeroSuggestEtherSerp[]; | |
350 extern const char kEnableZeroSuggestEtherNoSerp[]; | |
351 extern const char kEnableZeroSuggestMostVisited[]; | 349 extern const char kEnableZeroSuggestMostVisited[]; |
352 extern const char kEnableZeroSuggestPersonalized[]; | 350 extern const char kEnableZeroSuggestMostVisitedWithoutSerp[]; |
353 extern const char kEnableInstantSearchClicks[]; | 351 extern const char kEnableInstantSearchClicks[]; |
354 #endif | 352 #endif |
355 | 353 |
356 #if defined(USE_ASH) | 354 #if defined(USE_ASH) |
357 extern const char kOpenAsh[]; | 355 extern const char kOpenAsh[]; |
358 #endif | 356 #endif |
359 | 357 |
360 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) | 358 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) |
361 extern const char kPasswordStore[]; | 359 extern const char kPasswordStore[]; |
362 #endif | 360 #endif |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
398 | 396 |
399 bool AboutInSettingsEnabled(); | 397 bool AboutInSettingsEnabled(); |
400 bool SettingsWindowEnabled(); | 398 bool SettingsWindowEnabled(); |
401 | 399 |
402 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 400 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
403 // alphabetical order, or in one of the ifdefs (also in order in each section). | 401 // alphabetical order, or in one of the ifdefs (also in order in each section). |
404 | 402 |
405 } // namespace switches | 403 } // namespace switches |
406 | 404 |
407 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 405 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |