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

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

Issue 1949393007: X11: Better timestamp handling for _NET_ACTIVE_WINDOW (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Change kAtomStr, fix formatting Created 4 years, 7 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 1104 matching lines...) Expand 10 before | Expand all | Expand 10 after
1115 #endif 1115 #endif
1116 1116
1117 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) 1117 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS)
1118 // These flags show the man page on Linux. They are equivalent to each 1118 // These flags show the man page on Linux. They are equivalent to each
1119 // other. 1119 // other.
1120 const char kHelp[] = "help"; 1120 const char kHelp[] = "help";
1121 const char kHelpShort[] = "h"; 1121 const char kHelpShort[] = "h";
1122 1122
1123 // Specifies which password store to use (detect, default, gnome, kwallet). 1123 // Specifies which password store to use (detect, default, gnome, kwallet).
1124 const char kPasswordStore[] = "password-store"; 1124 const char kPasswordStore[] = "password-store";
1125
1126 // Updates X11Desktophandler::wm_user_time_ms with the latest X server time.
1127 const char kWmUserTimeMs[] = "wm-user-time-ms";
1125 #endif 1128 #endif
1126 1129
1127 #if defined(OS_MACOSX) 1130 #if defined(OS_MACOSX)
1128 // Prevents Chrome from quitting when Chrome Apps are open. 1131 // Prevents Chrome from quitting when Chrome Apps are open.
1129 const char kAppsKeepChromeAliveInTests[] = "apps-keep-chrome-alive-in-tests"; 1132 const char kAppsKeepChromeAliveInTests[] = "apps-keep-chrome-alive-in-tests";
1130 1133
1131 // Shows a notification when quitting Chrome with hosted apps running. Default 1134 // Shows a notification when quitting Chrome with hosted apps running. Default
1132 // behavior is to also quit all hosted apps. 1135 // behavior is to also quit all hosted apps.
1133 const char kHostedAppQuitNotification[] = "enable-hosted-app-quit-notification"; 1136 const char kHostedAppQuitNotification[] = "enable-hosted-app-quit-notification";
1134 1137
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
1352 1355
1353 // ----------------------------------------------------------------------------- 1356 // -----------------------------------------------------------------------------
1354 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1357 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1355 // 1358 //
1356 // You were going to just dump your switches here, weren't you? Instead, please 1359 // You were going to just dump your switches here, weren't you? Instead, please
1357 // put them in alphabetical order above, or in order inside the appropriate 1360 // put them in alphabetical order above, or in order inside the appropriate
1358 // ifdef at the bottom. The order should match the header. 1361 // ifdef at the bottom. The order should match the header.
1359 // ----------------------------------------------------------------------------- 1362 // -----------------------------------------------------------------------------
1360 1363
1361 } // namespace switches 1364 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698