OLD | NEW |
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 1061 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1072 | 1072 |
1073 // Disable data backup when user's not signed in. | 1073 // Disable data backup when user's not signed in. |
1074 const char kSyncDisableBackup[] = "disable-sync-backup"; | 1074 const char kSyncDisableBackup[] = "disable-sync-backup"; |
1075 | 1075 |
1076 // Disable sync rollback. | 1076 // Disable sync rollback. |
1077 const char kSyncDisableRollback[] = "disable-sync-rollback"; | 1077 const char kSyncDisableRollback[] = "disable-sync-rollback"; |
1078 | 1078 |
1079 // Passes the name of the current running automated test to Chrome. | 1079 // Passes the name of the current running automated test to Chrome. |
1080 const char kTestName[] = "test-name"; | 1080 const char kTestName[] = "test-name"; |
1081 | 1081 |
1082 #ifdef ENABLE_TOPCHROME_MD | |
1083 const char kTopChromeMD[] = "topchrome-md"; | |
1084 const char kTopChromeMDEnabled[] = "enable-topchrome-md"; | |
1085 const char kTopChromeMDDisabled[] = "disable-topchrome-md"; | |
1086 #endif | |
1087 | |
1088 // Disables same-origin check on HTTP resources pushed via a SPDY proxy. | 1082 // Disables same-origin check on HTTP resources pushed via a SPDY proxy. |
1089 // The value is the host:port of the trusted proxy. | 1083 // The value is the host:port of the trusted proxy. |
1090 const char kTrustedSpdyProxy[] = "trusted-spdy-proxy"; | 1084 const char kTrustedSpdyProxy[] = "trusted-spdy-proxy"; |
1091 | 1085 |
1092 // Experimental. Shows a dialog asking the user to try chrome. This flag is to | 1086 // Experimental. Shows a dialog asking the user to try chrome. This flag is to |
1093 // be used only by the upgrade process. | 1087 // be used only by the upgrade process. |
1094 const char kTryChromeAgain[] = "try-chrome-again"; | 1088 const char kTryChromeAgain[] = "try-chrome-again"; |
1095 | 1089 |
1096 // Overrides per-origin quota settings to unlimited storage for any | 1090 // Overrides per-origin quota settings to unlimited storage for any |
1097 // apps/origins. This should be used only for testing purpose. | 1091 // apps/origins. This should be used only for testing purpose. |
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1376 | 1370 |
1377 // ----------------------------------------------------------------------------- | 1371 // ----------------------------------------------------------------------------- |
1378 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1372 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1379 // | 1373 // |
1380 // You were going to just dump your switches here, weren't you? Instead, please | 1374 // You were going to just dump your switches here, weren't you? Instead, please |
1381 // put them in alphabetical order above, or in order inside the appropriate | 1375 // put them in alphabetical order above, or in order inside the appropriate |
1382 // ifdef at the bottom. The order should match the header. | 1376 // ifdef at the bottom. The order should match the header. |
1383 // ----------------------------------------------------------------------------- | 1377 // ----------------------------------------------------------------------------- |
1384 | 1378 |
1385 } // namespace switches | 1379 } // namespace switches |
OLD | NEW |