| 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 1233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1244 "sync-deferred-startup-timeout-seconds"; | 1244 "sync-deferred-startup-timeout-seconds"; |
| 1245 | 1245 |
| 1246 // Enables feature to avoid unnecessary GetUpdate requests. | 1246 // Enables feature to avoid unnecessary GetUpdate requests. |
| 1247 const char kSyncEnableGetUpdateAvoidance[] = | 1247 const char kSyncEnableGetUpdateAvoidance[] = |
| 1248 "sync-enable-get-update-avoidance"; | 1248 "sync-enable-get-update-avoidance"; |
| 1249 | 1249 |
| 1250 // Enables directory support for sync filesystem | 1250 // Enables directory support for sync filesystem |
| 1251 const char kSyncfsEnableDirectoryOperation[] = | 1251 const char kSyncfsEnableDirectoryOperation[] = |
| 1252 "enable-syncfs-directory-operation"; | 1252 "enable-syncfs-directory-operation"; |
| 1253 | 1253 |
| 1254 // Enables backup/rollback of user's data. |
| 1255 const char kSyncEnableBackupRollback[] = "enable-sync-backup-rollback"; |
| 1256 |
| 1254 // Passes the name of the current running automated test to Chrome. | 1257 // Passes the name of the current running automated test to Chrome. |
| 1255 const char kTestName[] = "test-name"; | 1258 const char kTestName[] = "test-name"; |
| 1256 | 1259 |
| 1257 // Disables same-origin check on HTTP resources pushed via a SPDY proxy. | 1260 // Disables same-origin check on HTTP resources pushed via a SPDY proxy. |
| 1258 // The value is the host:port of the trusted proxy. | 1261 // The value is the host:port of the trusted proxy. |
| 1259 const char kTrustedSpdyProxy[] = "trusted-spdy-proxy"; | 1262 const char kTrustedSpdyProxy[] = "trusted-spdy-proxy"; |
| 1260 | 1263 |
| 1261 // Experimental. Shows a dialog asking the user to try chrome. This flag is to | 1264 // Experimental. Shows a dialog asking the user to try chrome. This flag is to |
| 1262 // be used only by the upgrade process. | 1265 // be used only by the upgrade process. |
| 1263 const char kTryChromeAgain[] = "try-chrome-again"; | 1266 const char kTryChromeAgain[] = "try-chrome-again"; |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1465 | 1468 |
| 1466 // ----------------------------------------------------------------------------- | 1469 // ----------------------------------------------------------------------------- |
| 1467 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1470 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1468 // | 1471 // |
| 1469 // You were going to just dump your switches here, weren't you? Instead, please | 1472 // You were going to just dump your switches here, weren't you? Instead, please |
| 1470 // put them in alphabetical order above, or in order inside the appropriate | 1473 // put them in alphabetical order above, or in order inside the appropriate |
| 1471 // ifdef at the bottom. The order should match the header. | 1474 // ifdef at the bottom. The order should match the header. |
| 1472 // ----------------------------------------------------------------------------- | 1475 // ----------------------------------------------------------------------------- |
| 1473 | 1476 |
| 1474 } // namespace switches | 1477 } // namespace switches |
| OLD | NEW |