| 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 the shared command-line switches used by code in the Chrome | 5 // Defines the shared command-line switches used by code in the Chrome |
| 6 // directory that don't have anywhere more specific to go. | 6 // directory that don't have anywhere more specific to go. |
| 7 | 7 |
| 8 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ | 8 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ |
| 9 #define CHROME_COMMON_CHROME_SWITCHES_H_ | 9 #define CHROME_COMMON_CHROME_SWITCHES_H_ |
| 10 | 10 |
| (...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 extern const char kEnableDomDistillerButtonAnimation[]; | 317 extern const char kEnableDomDistillerButtonAnimation[]; |
| 318 extern const char kEnableHostedMode[]; | 318 extern const char kEnableHostedMode[]; |
| 319 extern const char kEnableHungRendererInfoBar[]; | 319 extern const char kEnableHungRendererInfoBar[]; |
| 320 extern const char kEnablePhysicalWeb[]; | 320 extern const char kEnablePhysicalWeb[]; |
| 321 extern const char kProgressBarAnimation[]; | 321 extern const char kProgressBarAnimation[]; |
| 322 extern const char kEnableThemeColorInTabbedMode[]; | 322 extern const char kEnableThemeColorInTabbedMode[]; |
| 323 #endif // defined(OS_ANDROID) | 323 #endif // defined(OS_ANDROID) |
| 324 | 324 |
| 325 #if defined(USE_ASH) | 325 #if defined(USE_ASH) |
| 326 extern const char kOpenAsh[]; | 326 extern const char kOpenAsh[]; |
| 327 #if defined(OS_LINUX) |
| 328 extern const char kEnableWaylandServer[]; |
| 329 #endif |
| 327 #endif | 330 #endif |
| 328 | 331 |
| 329 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) | 332 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) |
| 330 extern const char kHelp[]; | 333 extern const char kHelp[]; |
| 331 extern const char kHelpShort[]; | 334 extern const char kHelpShort[]; |
| 332 extern const char kPasswordStore[]; | 335 extern const char kPasswordStore[]; |
| 333 #endif | 336 #endif |
| 334 | 337 |
| 335 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) | 338 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
| 336 extern const char kMigrateDataDirForSxS[]; | 339 extern const char kMigrateDataDirForSxS[]; |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 415 #if defined(ENABLE_TASK_MANAGER) | 418 #if defined(ENABLE_TASK_MANAGER) |
| 416 bool NewTaskManagerEnabled(); | 419 bool NewTaskManagerEnabled(); |
| 417 #endif // defined(ENABLE_TASK_MANAGER) | 420 #endif // defined(ENABLE_TASK_MANAGER) |
| 418 | 421 |
| 419 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 422 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 420 // alphabetical order, or in one of the ifdefs (also in order in each section). | 423 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 421 | 424 |
| 422 } // namespace switches | 425 } // namespace switches |
| 423 | 426 |
| 424 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 427 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |