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

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

Issue 1188713007: Moved --top-chrome-md command line switch from chrome_switches to ui_base_switches. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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 9
10 namespace switches { 10 namespace switches {
(...skipping 1052 matching lines...) Expand 10 before | Expand all | Expand 10 after
1063 1063
1064 // Disable data backup when user's not signed in. 1064 // Disable data backup when user's not signed in.
1065 const char kSyncDisableBackup[] = "disable-sync-backup"; 1065 const char kSyncDisableBackup[] = "disable-sync-backup";
1066 1066
1067 // Disable sync rollback. 1067 // Disable sync rollback.
1068 const char kSyncDisableRollback[] = "disable-sync-rollback"; 1068 const char kSyncDisableRollback[] = "disable-sync-rollback";
1069 1069
1070 // Passes the name of the current running automated test to Chrome. 1070 // Passes the name of the current running automated test to Chrome.
1071 const char kTestName[] = "test-name"; 1071 const char kTestName[] = "test-name";
1072 1072
1073 #ifdef ENABLE_TOPCHROME_MD
1074 const char kTopChromeMD[] = "topchrome-md";
1075 const char kTopChromeMDEnabled[] = "enable-topchrome-md";
1076 const char kTopChromeMDDisabled[] = "disable-topchrome-md";
1077 #endif
1078
1079 // Disables same-origin check on HTTP resources pushed via a SPDY proxy. 1073 // Disables same-origin check on HTTP resources pushed via a SPDY proxy.
1080 // The value is the host:port of the trusted proxy. 1074 // The value is the host:port of the trusted proxy.
1081 const char kTrustedSpdyProxy[] = "trusted-spdy-proxy"; 1075 const char kTrustedSpdyProxy[] = "trusted-spdy-proxy";
1082 1076
1083 // Experimental. Shows a dialog asking the user to try chrome. This flag is to 1077 // Experimental. Shows a dialog asking the user to try chrome. This flag is to
1084 // be used only by the upgrade process. 1078 // be used only by the upgrade process.
1085 const char kTryChromeAgain[] = "try-chrome-again"; 1079 const char kTryChromeAgain[] = "try-chrome-again";
1086 1080
1087 // Overrides per-origin quota settings to unlimited storage for any 1081 // Overrides per-origin quota settings to unlimited storage for any
1088 // apps/origins. This should be used only for testing purpose. 1082 // apps/origins. This should be used only for testing purpose.
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
1367 1361
1368 // ----------------------------------------------------------------------------- 1362 // -----------------------------------------------------------------------------
1369 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1363 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1370 // 1364 //
1371 // You were going to just dump your switches here, weren't you? Instead, please 1365 // You were going to just dump your switches here, weren't you? Instead, please
1372 // put them in alphabetical order above, or in order inside the appropriate 1366 // put them in alphabetical order above, or in order inside the appropriate
1373 // ifdef at the bottom. The order should match the header. 1367 // ifdef at the bottom. The order should match the header.
1374 // ----------------------------------------------------------------------------- 1368 // -----------------------------------------------------------------------------
1375 1369
1376 } // namespace switches 1370 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698