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

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

Issue 1108333002: Compile-time and run-time flags for top chrome material design. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Code clean-up Created 5 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 9
10 namespace switches { 10 namespace switches {
(...skipping 1120 matching lines...) Expand 10 before | Expand all | Expand 10 after
1131 1131
1132 // Disable data backup when user's not signed in. 1132 // Disable data backup when user's not signed in.
1133 const char kSyncDisableBackup[] = "disable-sync-backup"; 1133 const char kSyncDisableBackup[] = "disable-sync-backup";
1134 1134
1135 // Disable sync rollback. 1135 // Disable sync rollback.
1136 const char kSyncDisableRollback[] = "disable-sync-rollback"; 1136 const char kSyncDisableRollback[] = "disable-sync-rollback";
1137 1137
1138 // Passes the name of the current running automated test to Chrome. 1138 // Passes the name of the current running automated test to Chrome.
1139 const char kTestName[] = "test-name"; 1139 const char kTestName[] = "test-name";
1140 1140
1141 #ifdef ENABLE_TOPCHROME_MD
1142 const char kTopChromeMD[] = "top-chrome-md";
1143 const char kTopChromeMDEnabled[] = "enable-topchrome-md";
1144 const char kTopChromeMDDisabled[] = "disable-topchrome-md";
1145 #endif
1146
1141 // Disables same-origin check on HTTP resources pushed via a SPDY proxy. 1147 // Disables same-origin check on HTTP resources pushed via a SPDY proxy.
1142 // The value is the host:port of the trusted proxy. 1148 // The value is the host:port of the trusted proxy.
1143 const char kTrustedSpdyProxy[] = "trusted-spdy-proxy"; 1149 const char kTrustedSpdyProxy[] = "trusted-spdy-proxy";
1144 1150
1145 // Experimental. Shows a dialog asking the user to try chrome. This flag is to 1151 // Experimental. Shows a dialog asking the user to try chrome. This flag is to
1146 // be used only by the upgrade process. 1152 // be used only by the upgrade process.
1147 const char kTryChromeAgain[] = "try-chrome-again"; 1153 const char kTryChromeAgain[] = "try-chrome-again";
1148 1154
1149 // Runs un-installation steps that were done by chrome first-run. 1155 // Runs un-installation steps that were done by chrome first-run.
1150 const char kUninstall[] = "uninstall"; 1156 const char kUninstall[] = "uninstall";
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
1388 1394
1389 // ----------------------------------------------------------------------------- 1395 // -----------------------------------------------------------------------------
1390 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1396 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1391 // 1397 //
1392 // You were going to just dump your switches here, weren't you? Instead, please 1398 // You were going to just dump your switches here, weren't you? Instead, please
1393 // put them in alphabetical order above, or in order inside the appropriate 1399 // put them in alphabetical order above, or in order inside the appropriate
1394 // ifdef at the bottom. The order should match the header. 1400 // ifdef at the bottom. The order should match the header.
1395 // ----------------------------------------------------------------------------- 1401 // -----------------------------------------------------------------------------
1396 1402
1397 } // namespace switches 1403 } // namespace switches
OLDNEW
« chrome/browser/about_flags.cc ('K') | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698