| 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 1065 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1076 | 1076 |
| 1077 // Disable data backup when user's not signed in. | 1077 // Disable data backup when user's not signed in. |
| 1078 const char kSyncDisableBackup[] = "disable-sync-backup"; | 1078 const char kSyncDisableBackup[] = "disable-sync-backup"; |
| 1079 | 1079 |
| 1080 // Disable sync rollback. | 1080 // Disable sync rollback. |
| 1081 const char kSyncDisableRollback[] = "disable-sync-rollback"; | 1081 const char kSyncDisableRollback[] = "disable-sync-rollback"; |
| 1082 | 1082 |
| 1083 // Passes the name of the current running automated test to Chrome. | 1083 // Passes the name of the current running automated test to Chrome. |
| 1084 const char kTestName[] = "test-name"; | 1084 const char kTestName[] = "test-name"; |
| 1085 | 1085 |
| 1086 #ifdef ENABLE_TOPCHROME_MD |
| 1087 const char kTopChromeMD[] = "topchrome-md"; |
| 1088 const char kTopChromeMDEnabled[] = "enable-topchrome-md"; |
| 1089 const char kTopChromeMDDisabled[] = "disable-topchrome-md"; |
| 1090 #endif |
| 1091 |
| 1086 // Disables same-origin check on HTTP resources pushed via a SPDY proxy. | 1092 // Disables same-origin check on HTTP resources pushed via a SPDY proxy. |
| 1087 // The value is the host:port of the trusted proxy. | 1093 // The value is the host:port of the trusted proxy. |
| 1088 const char kTrustedSpdyProxy[] = "trusted-spdy-proxy"; | 1094 const char kTrustedSpdyProxy[] = "trusted-spdy-proxy"; |
| 1089 | 1095 |
| 1090 // Experimental. Shows a dialog asking the user to try chrome. This flag is to | 1096 // Experimental. Shows a dialog asking the user to try chrome. This flag is to |
| 1091 // be used only by the upgrade process. | 1097 // be used only by the upgrade process. |
| 1092 const char kTryChromeAgain[] = "try-chrome-again"; | 1098 const char kTryChromeAgain[] = "try-chrome-again"; |
| 1093 | 1099 |
| 1094 // Overrides per-origin quota settings to unlimited storage for any | 1100 // Overrides per-origin quota settings to unlimited storage for any |
| 1095 // apps/origins. This should be used only for testing purpose. | 1101 // apps/origins. This should be used only for testing purpose. |
| (...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1364 | 1370 |
| 1365 // ----------------------------------------------------------------------------- | 1371 // ----------------------------------------------------------------------------- |
| 1366 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1372 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1367 // | 1373 // |
| 1368 // 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 |
| 1369 // 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 |
| 1370 // ifdef at the bottom. The order should match the header. | 1376 // ifdef at the bottom. The order should match the header. |
| 1371 // ----------------------------------------------------------------------------- | 1377 // ----------------------------------------------------------------------------- |
| 1372 | 1378 |
| 1373 } // namespace switches | 1379 } // namespace switches |
| OLD | NEW |