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

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

Issue 9570017: Defer shutting down Chrome after the CF automation connection goes away. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressing grt's latest nit. Created 8 years, 9 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 | Annotate | Revision Log
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 9
10 namespace switches { 10 namespace switches {
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 128
129 // How often (in seconds) to check for updates. Should only be used for testing 129 // How often (in seconds) to check for updates. Should only be used for testing
130 // purposes. 130 // purposes.
131 const char kCheckForUpdateIntervalSec[] = "check-for-update-interval"; 131 const char kCheckForUpdateIntervalSec[] = "check-for-update-interval";
132 132
133 // Checks the cloud print connector policy, informing the service process if 133 // Checks the cloud print connector policy, informing the service process if
134 // the policy is set to disallow the connector, then quits. 134 // the policy is set to disallow the connector, then quits.
135 const char kCheckCloudPrintConnectorPolicy[] = 135 const char kCheckCloudPrintConnectorPolicy[] =
136 "check-cloud-print-connector-policy"; 136 "check-cloud-print-connector-policy";
137 137
138 // Tells Chrome to delay shutdown (for a specified number of seconds) when a
139 // Chrome Frame automation channel is closed.
140 const char kChromeFrameShutdownDelay[] = "chrome-frame-shutdown-delay";
slightlyoff 2012/03/05 12:35:53 Why is "chrome frame" in the name? Why not just "s
robertshield 2012/03/05 13:33:25 Because this applies only to Chrome Frame. It is u
141
138 // Tells chrome to load the specified version of chrome.dll on Windows. If this 142 // Tells chrome to load the specified version of chrome.dll on Windows. If this
139 // version cannot be loaded, Chrome will exit. 143 // version cannot be loaded, Chrome will exit.
140 const char kChromeVersion[] = "chrome-version"; 144 const char kChromeVersion[] = "chrome-version";
141 145
142 // Comma-separated list of SSL cipher suites to disable. 146 // Comma-separated list of SSL cipher suites to disable.
143 const char kCipherSuiteBlacklist[] = "cipher-suite-blacklist"; 147 const char kCipherSuiteBlacklist[] = "cipher-suite-blacklist";
144 148
145 // Clears the token service before using it. This allows simulating the 149 // Clears the token service before using it. This allows simulating the
146 // expiration of credentials during testing. 150 // expiration of credentials during testing.
147 const char kClearTokenService[] = "clear-token-service"; 151 const char kClearTokenService[] = "clear-token-service";
(...skipping 1198 matching lines...) Expand 10 before | Expand all | Expand 10 after
1346 1350
1347 // ----------------------------------------------------------------------------- 1351 // -----------------------------------------------------------------------------
1348 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1352 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1349 // 1353 //
1350 // You were going to just dump your switches here, weren't you? Instead, please 1354 // You were going to just dump your switches here, weren't you? Instead, please
1351 // put them in alphabetical order above, or in order inside the appropriate 1355 // put them in alphabetical order above, or in order inside the appropriate
1352 // ifdef at the bottom. The order should match the header. 1356 // ifdef at the bottom. The order should match the header.
1353 // ----------------------------------------------------------------------------- 1357 // -----------------------------------------------------------------------------
1354 1358
1355 } // namespace switches 1359 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698