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 1099 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1110 const char kHelp[] = "help"; | 1110 const char kHelp[] = "help"; |
1111 const char kHelpShort[] = "h"; | 1111 const char kHelpShort[] = "h"; |
1112 | 1112 |
1113 // Specifies which password store to use | 1113 // Specifies which password store to use |
1114 // (detect, default, gnome-keyring, gnome-libsecret, kwallet). | 1114 // (detect, default, gnome-keyring, gnome-libsecret, kwallet). |
1115 const char kPasswordStore[] = "password-store"; | 1115 const char kPasswordStore[] = "password-store"; |
1116 | 1116 |
1117 // The same as the --class argument in X applications. Overrides the WM_CLASS | 1117 // The same as the --class argument in X applications. Overrides the WM_CLASS |
1118 // window property with the given value. | 1118 // window property with the given value. |
1119 const char kWmClass[] = "class"; | 1119 const char kWmClass[] = "class"; |
1120 | |
1121 // Updates X11DesktopHandler::wm_user_time_ms with the latest X server time. | |
1122 const char kWmUserTimeMs[] = "wm-user-time-ms"; | |
1123 #endif | 1120 #endif |
1124 | 1121 |
1125 #if defined(OS_MACOSX) | 1122 #if defined(OS_MACOSX) |
1126 // Prevents Chrome from quitting when Chrome Apps are open. | 1123 // Prevents Chrome from quitting when Chrome Apps are open. |
1127 const char kAppsKeepChromeAliveInTests[] = "apps-keep-chrome-alive-in-tests"; | 1124 const char kAppsKeepChromeAliveInTests[] = "apps-keep-chrome-alive-in-tests"; |
1128 | 1125 |
1129 // Disable the toolkit-views App Info dialog for Mac. | 1126 // Disable the toolkit-views App Info dialog for Mac. |
1130 const char kDisableAppInfoDialogMac[] = "disable-app-info-dialog-mac"; | 1127 const char kDisableAppInfoDialogMac[] = "disable-app-info-dialog-mac"; |
1131 | 1128 |
1132 // Disables custom Cmd+` window cycling for platform apps and hosted apps. | 1129 // Disables custom Cmd+` window cycling for platform apps and hosted apps. |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1320 | 1317 |
1321 // ----------------------------------------------------------------------------- | 1318 // ----------------------------------------------------------------------------- |
1322 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1319 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1323 // | 1320 // |
1324 // You were going to just dump your switches here, weren't you? Instead, please | 1321 // You were going to just dump your switches here, weren't you? Instead, please |
1325 // put them in alphabetical order above, or in order inside the appropriate | 1322 // put them in alphabetical order above, or in order inside the appropriate |
1326 // ifdef at the bottom. The order should match the header. | 1323 // ifdef at the bottom. The order should match the header. |
1327 // ----------------------------------------------------------------------------- | 1324 // ----------------------------------------------------------------------------- |
1328 | 1325 |
1329 } // namespace switches | 1326 } // namespace switches |
OLD | NEW |