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 128433006: Remove unused switch kChromeFrame. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 159
160 // How often (in seconds) to check for updates. Should only be used for testing 160 // How often (in seconds) to check for updates. Should only be used for testing
161 // purposes. 161 // purposes.
162 const char kCheckForUpdateIntervalSec[] = "check-for-update-interval"; 162 const char kCheckForUpdateIntervalSec[] = "check-for-update-interval";
163 163
164 // Checks the cloud print connector policy, informing the service process if 164 // Checks the cloud print connector policy, informing the service process if
165 // the policy is set to disallow the connector, then quits. 165 // the policy is set to disallow the connector, then quits.
166 const char kCheckCloudPrintConnectorPolicy[] = 166 const char kCheckCloudPrintConnectorPolicy[] =
167 "check-cloud-print-connector-policy"; 167 "check-cloud-print-connector-policy";
168 168
169 // Run Chrome in Chrome Frame mode. This means that Chrome expects to be run
170 // as a dependent process of the Chrome Frame plugin.
171 const char kChromeFrame[] = "chrome-frame";
172
173 // Tells chrome to load the specified version of chrome.dll on Windows. If this 169 // Tells chrome to load the specified version of chrome.dll on Windows. If this
174 // version cannot be loaded, Chrome will exit. 170 // version cannot be loaded, Chrome will exit.
175 const char kChromeVersion[] = "chrome-version"; 171 const char kChromeVersion[] = "chrome-version";
176 172
177 // Comma-separated list of SSL cipher suites to disable. 173 // Comma-separated list of SSL cipher suites to disable.
178 const char kCipherSuiteBlacklist[] = "cipher-suite-blacklist"; 174 const char kCipherSuiteBlacklist[] = "cipher-suite-blacklist";
179 175
180 // Clears the token service before using it. This allows simulating the 176 // Clears the token service before using it. This allows simulating the
181 // expiration of credentials during testing. 177 // expiration of credentials during testing.
182 const char kClearTokenService[] = "clear-token-service"; 178 const char kClearTokenService[] = "clear-token-service";
(...skipping 1482 matching lines...) Expand 10 before | Expand all | Expand 10 after
1665 1661
1666 // ----------------------------------------------------------------------------- 1662 // -----------------------------------------------------------------------------
1667 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1663 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1668 // 1664 //
1669 // You were going to just dump your switches here, weren't you? Instead, please 1665 // You were going to just dump your switches here, weren't you? Instead, please
1670 // put them in alphabetical order above, or in order inside the appropriate 1666 // put them in alphabetical order above, or in order inside the appropriate
1671 // ifdef at the bottom. The order should match the header. 1667 // ifdef at the bottom. The order should match the header.
1672 // ----------------------------------------------------------------------------- 1668 // -----------------------------------------------------------------------------
1673 1669
1674 } // namespace switches 1670 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698