| 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 #include "chrome/common/chrome_switches.h" | 5 #include "chrome/common/chrome_switches.h" |
| 6 | 6 |
| 7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 | 10 |
| (...skipping 1084 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1095 const char kTabManagementExperimentTypeElderberry[] = | 1095 const char kTabManagementExperimentTypeElderberry[] = |
| 1096 "tab-management-experiment-type-elderberry"; | 1096 "tab-management-experiment-type-elderberry"; |
| 1097 | 1097 |
| 1098 // Custom WebAPK server URL for the sake of testing. | 1098 // Custom WebAPK server URL for the sake of testing. |
| 1099 const char kWebApkServerUrl[] = "webapk-server-url"; | 1099 const char kWebApkServerUrl[] = "webapk-server-url"; |
| 1100 #endif // defined(OS_ANDROID) | 1100 #endif // defined(OS_ANDROID) |
| 1101 | 1101 |
| 1102 #if defined(OS_CHROMEOS) | 1102 #if defined(OS_CHROMEOS) |
| 1103 // Enables native cups integration | 1103 // Enables native cups integration |
| 1104 const char kEnableNativeCups[] = "enable-native-cups"; | 1104 const char kEnableNativeCups[] = "enable-native-cups"; |
| 1105 #endif // defined(OS_CHROMEOS) | 1105 #endif // defined(OS_CHROMEOS) |
| 1106 | 1106 |
| 1107 #if defined(USE_ASH) | 1107 #if defined(USE_ASH) |
| 1108 const char kOpenAsh[] = "open-ash"; | 1108 const char kOpenAsh[] = "open-ash"; |
| 1109 #endif | 1109 #endif |
| 1110 | 1110 |
| 1111 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) | 1111 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) |
| 1112 // These flags show the man page on Linux. They are equivalent to each | 1112 // These flags show the man page on Linux. They are equivalent to each |
| 1113 // other. | 1113 // other. |
| 1114 const char kHelp[] = "help"; | 1114 const char kHelp[] = "help"; |
| 1115 const char kHelpShort[] = "h"; | 1115 const char kHelpShort[] = "h"; |
| 1116 | 1116 |
| 1117 // Specifies which password store to use (detect, default, gnome, kwallet). | 1117 // Specifies which password store to use |
| 1118 // (detect, default, gnome-keyring, gnome-libsecret, kwallet). |
| 1118 const char kPasswordStore[] = "password-store"; | 1119 const char kPasswordStore[] = "password-store"; |
| 1119 | 1120 |
| 1120 // The same as the --class argument in X applications. Overrides the WM_CLASS | 1121 // The same as the --class argument in X applications. Overrides the WM_CLASS |
| 1121 // window property with the given value. | 1122 // window property with the given value. |
| 1122 const char kWmClass[] = "class"; | 1123 const char kWmClass[] = "class"; |
| 1123 | 1124 |
| 1124 // Updates X11DesktopHandler::wm_user_time_ms with the latest X server time. | 1125 // Updates X11DesktopHandler::wm_user_time_ms with the latest X server time. |
| 1125 const char kWmUserTimeMs[] = "wm-user-time-ms"; | 1126 const char kWmUserTimeMs[] = "wm-user-time-ms"; |
| 1126 #endif | 1127 #endif |
| 1127 | 1128 |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1319 | 1320 |
| 1320 // ----------------------------------------------------------------------------- | 1321 // ----------------------------------------------------------------------------- |
| 1321 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1322 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1322 // | 1323 // |
| 1323 // You were going to just dump your switches here, weren't you? Instead, please | 1324 // You were going to just dump your switches here, weren't you? Instead, please |
| 1324 // put them in alphabetical order above, or in order inside the appropriate | 1325 // put them in alphabetical order above, or in order inside the appropriate |
| 1325 // ifdef at the bottom. The order should match the header. | 1326 // ifdef at the bottom. The order should match the header. |
| 1326 // ----------------------------------------------------------------------------- | 1327 // ----------------------------------------------------------------------------- |
| 1327 | 1328 |
| 1328 } // namespace switches | 1329 } // namespace switches |
| OLD | NEW |