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

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

Issue 238723008: Remove uninstall extensions command line switch (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Remove switch from chrome_switches.{h,cc} Created 6 years, 8 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
« 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 1219 matching lines...) Expand 10 before | Expand all | Expand 10 after
1230 const char kTestName[] = "test-name"; 1230 const char kTestName[] = "test-name";
1231 1231
1232 // Disables same-origin check on HTTP resources pushed via a SPDY proxy. 1232 // Disables same-origin check on HTTP resources pushed via a SPDY proxy.
1233 // The value is the host:port of the trusted proxy. 1233 // The value is the host:port of the trusted proxy.
1234 const char kTrustedSpdyProxy[] = "trusted-spdy-proxy"; 1234 const char kTrustedSpdyProxy[] = "trusted-spdy-proxy";
1235 1235
1236 // Experimental. Shows a dialog asking the user to try chrome. This flag is to 1236 // Experimental. Shows a dialog asking the user to try chrome. This flag is to
1237 // be used only by the upgrade process. 1237 // be used only by the upgrade process.
1238 const char kTryChromeAgain[] = "try-chrome-again"; 1238 const char kTryChromeAgain[] = "try-chrome-again";
1239 1239
1240 // Uninstalls an extension with the specified extension id.
1241 const char kUninstallExtension[] = "uninstall-extension";
1242
1243 // Runs un-installation steps that were done by chrome first-run. 1240 // Runs un-installation steps that were done by chrome first-run.
1244 const char kUninstall[] = "uninstall"; 1241 const char kUninstall[] = "uninstall";
1245 1242
1246 // Overrides per-origin quota settings to unlimited storage for any 1243 // Overrides per-origin quota settings to unlimited storage for any
1247 // apps/origins. This should be used only for testing purpose. 1244 // apps/origins. This should be used only for testing purpose.
1248 const char kUnlimitedStorage[] = "unlimited-storage"; 1245 const char kUnlimitedStorage[] = "unlimited-storage";
1249 1246
1250 // Uses Spdy for the transport protocol instead of HTTP. This is a temporary 1247 // Uses Spdy for the transport protocol instead of HTTP. This is a temporary
1251 // testing flag. 1248 // testing flag.
1252 const char kUseSpdy[] = "use-spdy"; 1249 const char kUseSpdy[] = "use-spdy";
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
1438 1435
1439 // ----------------------------------------------------------------------------- 1436 // -----------------------------------------------------------------------------
1440 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1437 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1441 // 1438 //
1442 // You were going to just dump your switches here, weren't you? Instead, please 1439 // You were going to just dump your switches here, weren't you? Instead, please
1443 // put them in alphabetical order above, or in order inside the appropriate 1440 // put them in alphabetical order above, or in order inside the appropriate
1444 // ifdef at the bottom. The order should match the header. 1441 // ifdef at the bottom. The order should match the header.
1445 // ----------------------------------------------------------------------------- 1442 // -----------------------------------------------------------------------------
1446 1443
1447 } // namespace switches 1444 } // 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