| 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 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 extern const char kWindowPosition[]; | 333 extern const char kWindowPosition[]; |
| 334 extern const char kWindowSize[]; | 334 extern const char kWindowSize[]; |
| 335 extern const char kWinHttpProxyResolver[]; | 335 extern const char kWinHttpProxyResolver[]; |
| 336 extern const char kWinJumplistAction[]; | 336 extern const char kWinJumplistAction[]; |
| 337 | 337 |
| 338 #if defined(OS_ANDROID) | 338 #if defined(OS_ANDROID) |
| 339 extern const char kDisableCast[]; | 339 extern const char kDisableCast[]; |
| 340 extern const char kDisableContextualSearch[]; | 340 extern const char kDisableContextualSearch[]; |
| 341 extern const char kDisableZeroSuggest[]; | 341 extern const char kDisableZeroSuggest[]; |
| 342 extern const char kEnableAccessibilityTabSwitcher[]; | 342 extern const char kEnableAccessibilityTabSwitcher[]; |
| 343 extern const char kEnableAppInstallAlerts[]; | |
| 344 extern const char kEnableContextualSearch[]; | 343 extern const char kEnableContextualSearch[]; |
| 345 extern const char kEnableZeroSuggestMostVisited[]; | 344 extern const char kEnableZeroSuggestMostVisited[]; |
| 346 extern const char kEnableZeroSuggestMostVisitedWithoutSerp[]; | 345 extern const char kEnableZeroSuggestMostVisitedWithoutSerp[]; |
| 347 extern const char kEnableInstantSearchClicks[]; | 346 extern const char kEnableInstantSearchClicks[]; |
| 348 #endif | 347 #endif |
| 349 | 348 |
| 350 #if defined(USE_ASH) | 349 #if defined(USE_ASH) |
| 351 extern const char kOpenAsh[]; | 350 extern const char kOpenAsh[]; |
| 352 #endif | 351 #endif |
| 353 | 352 |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 #if defined(OS_CHROMEOS) | 401 #if defined(OS_CHROMEOS) |
| 403 bool PowerOverlayEnabled(); | 402 bool PowerOverlayEnabled(); |
| 404 #endif | 403 #endif |
| 405 | 404 |
| 406 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 405 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 407 // alphabetical order, or in one of the ifdefs (also in order in each section). | 406 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 408 | 407 |
| 409 } // namespace switches | 408 } // namespace switches |
| 410 | 409 |
| 411 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 410 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |