Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(39)

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 2287583003: Linux: Remove --wm-user-time-ms command line argument (Closed)
Patch Set: Rename Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1096 matching lines...) Expand 10 before | Expand all | Expand 10 after
1107 const char kHelp[] = "help"; 1107 const char kHelp[] = "help";
1108 const char kHelpShort[] = "h"; 1108 const char kHelpShort[] = "h";
1109 1109
1110 // Specifies which password store to use 1110 // Specifies which password store to use
1111 // (detect, default, gnome-keyring, gnome-libsecret, kwallet). 1111 // (detect, default, gnome-keyring, gnome-libsecret, kwallet).
1112 const char kPasswordStore[] = "password-store"; 1112 const char kPasswordStore[] = "password-store";
1113 1113
1114 // The same as the --class argument in X applications. Overrides the WM_CLASS 1114 // The same as the --class argument in X applications. Overrides the WM_CLASS
1115 // window property with the given value. 1115 // window property with the given value.
1116 const char kWmClass[] = "class"; 1116 const char kWmClass[] = "class";
1117
1118 // Updates X11DesktopHandler::wm_user_time_ms with the latest X server time.
1119 const char kWmUserTimeMs[] = "wm-user-time-ms";
1120 #endif 1117 #endif
1121 1118
1122 #if defined(OS_MACOSX) 1119 #if defined(OS_MACOSX)
1123 // Prevents Chrome from quitting when Chrome Apps are open. 1120 // Prevents Chrome from quitting when Chrome Apps are open.
1124 const char kAppsKeepChromeAliveInTests[] = "apps-keep-chrome-alive-in-tests"; 1121 const char kAppsKeepChromeAliveInTests[] = "apps-keep-chrome-alive-in-tests";
1125 1122
1126 // Disable the toolkit-views App Info dialog for Mac. 1123 // Disable the toolkit-views App Info dialog for Mac.
1127 const char kDisableAppInfoDialogMac[] = "disable-app-info-dialog-mac"; 1124 const char kDisableAppInfoDialogMac[] = "disable-app-info-dialog-mac";
1128 1125
1129 // Disables custom Cmd+` window cycling for platform apps and hosted apps. 1126 // Disables custom Cmd+` window cycling for platform apps and hosted apps.
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
1317 1314
1318 // ----------------------------------------------------------------------------- 1315 // -----------------------------------------------------------------------------
1319 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1316 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1320 // 1317 //
1321 // You were going to just dump your switches here, weren't you? Instead, please 1318 // You were going to just dump your switches here, weren't you? Instead, please
1322 // put them in alphabetical order above, or in order inside the appropriate 1319 // put them in alphabetical order above, or in order inside the appropriate
1323 // ifdef at the bottom. The order should match the header. 1320 // ifdef at the bottom. The order should match the header.
1324 // ----------------------------------------------------------------------------- 1321 // -----------------------------------------------------------------------------
1325 1322
1326 } // namespace switches 1323 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698