| 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 1149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1160 const char kSyncDeferredStartupTimeoutSeconds[] = | 1160 const char kSyncDeferredStartupTimeoutSeconds[] = |
| 1161 "sync-deferred-startup-timeout-seconds"; | 1161 "sync-deferred-startup-timeout-seconds"; |
| 1162 | 1162 |
| 1163 // Enables feature to avoid unnecessary GetUpdate requests. | 1163 // Enables feature to avoid unnecessary GetUpdate requests. |
| 1164 const char kSyncEnableGetUpdateAvoidance[] = | 1164 const char kSyncEnableGetUpdateAvoidance[] = |
| 1165 "sync-enable-get-update-avoidance"; | 1165 "sync-enable-get-update-avoidance"; |
| 1166 | 1166 |
| 1167 // Disable data backup when user's not signed in. | 1167 // Disable data backup when user's not signed in. |
| 1168 const char kSyncDisableBackup[] = "disable-sync-backup"; | 1168 const char kSyncDisableBackup[] = "disable-sync-backup"; |
| 1169 | 1169 |
| 1170 // Enable data rollback when receiving sync rollback command. | 1170 // Disable sync rollback. |
| 1171 const char kSyncEnableRollback[] = "enable-sync-rollback"; | 1171 const char kSyncDisableRollback[] = "disable-sync-rollback"; |
| 1172 | 1172 |
| 1173 // Passes the name of the current running automated test to Chrome. | 1173 // Passes the name of the current running automated test to Chrome. |
| 1174 const char kTestName[] = "test-name"; | 1174 const char kTestName[] = "test-name"; |
| 1175 | 1175 |
| 1176 // Disables same-origin check on HTTP resources pushed via a SPDY proxy. | 1176 // Disables same-origin check on HTTP resources pushed via a SPDY proxy. |
| 1177 // The value is the host:port of the trusted proxy. | 1177 // The value is the host:port of the trusted proxy. |
| 1178 const char kTrustedSpdyProxy[] = "trusted-spdy-proxy"; | 1178 const char kTrustedSpdyProxy[] = "trusted-spdy-proxy"; |
| 1179 | 1179 |
| 1180 // Experimental. Shows a dialog asking the user to try chrome. This flag is to | 1180 // Experimental. Shows a dialog asking the user to try chrome. This flag is to |
| 1181 // be used only by the upgrade process. | 1181 // be used only by the upgrade process. |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1373 | 1373 |
| 1374 // ----------------------------------------------------------------------------- | 1374 // ----------------------------------------------------------------------------- |
| 1375 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1375 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1376 // | 1376 // |
| 1377 // You were going to just dump your switches here, weren't you? Instead, please | 1377 // You were going to just dump your switches here, weren't you? Instead, please |
| 1378 // put them in alphabetical order above, or in order inside the appropriate | 1378 // put them in alphabetical order above, or in order inside the appropriate |
| 1379 // ifdef at the bottom. The order should match the header. | 1379 // ifdef at the bottom. The order should match the header. |
| 1380 // ----------------------------------------------------------------------------- | 1380 // ----------------------------------------------------------------------------- |
| 1381 | 1381 |
| 1382 } // namespace switches | 1382 } // namespace switches |
| OLD | NEW |