| 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 1411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1422 // Makes the sync code to throw an unrecoverable error after initialization. | 1422 // Makes the sync code to throw an unrecoverable error after initialization. |
| 1423 // Useful for testing unrecoverable error scenarios. | 1423 // Useful for testing unrecoverable error scenarios. |
| 1424 const char kSyncThrowUnrecoverableError[] = "sync-throw-unrecoverable-error"; | 1424 const char kSyncThrowUnrecoverableError[] = "sync-throw-unrecoverable-error"; |
| 1425 | 1425 |
| 1426 | 1426 |
| 1427 // Tries to connect to XMPP using SSLTCP first (for testing). | 1427 // Tries to connect to XMPP using SSLTCP first (for testing). |
| 1428 const char kSyncTrySsltcpFirstForXmpp[] = "sync-try-ssltcp-first-for-xmpp"; | 1428 const char kSyncTrySsltcpFirstForXmpp[] = "sync-try-ssltcp-first-for-xmpp"; |
| 1429 | 1429 |
| 1430 // Enables deferring sync backend initialization until user initiated changes | 1430 // Enables deferring sync backend initialization until user initiated changes |
| 1431 // occur. | 1431 // occur. |
| 1432 const char kSyncEnableDeferredStartup[] = "sync-enable-deferred-startup"; | 1432 const char kSyncDisableDeferredStartup[] = "sync-disable-deferred-startup"; |
| 1433 | 1433 |
| 1434 // Enables feature to avoid unnecessary GetUpdate requests. | 1434 // Enables feature to avoid unnecessary GetUpdate requests. |
| 1435 const char kSyncEnableGetUpdateAvoidance[] = | 1435 const char kSyncEnableGetUpdateAvoidance[] = |
| 1436 "sync-enable-get-update-avoidance"; | 1436 "sync-enable-get-update-avoidance"; |
| 1437 | 1437 |
| 1438 // Enables directory support for sync filesystem | 1438 // Enables directory support for sync filesystem |
| 1439 const char kSyncfsEnableDirectoryOperation[] = | 1439 const char kSyncfsEnableDirectoryOperation[] = |
| 1440 "enable-syncfs-directory-operation"; | 1440 "enable-syncfs-directory-operation"; |
| 1441 | 1441 |
| 1442 // Passes the name of the current running automated test to Chrome. | 1442 // Passes the name of the current running automated test to Chrome. |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1666 | 1666 |
| 1667 // ----------------------------------------------------------------------------- | 1667 // ----------------------------------------------------------------------------- |
| 1668 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1668 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1669 // | 1669 // |
| 1670 // You were going to just dump your switches here, weren't you? Instead, please | 1670 // You were going to just dump your switches here, weren't you? Instead, please |
| 1671 // put them in alphabetical order above, or in order inside the appropriate | 1671 // put them in alphabetical order above, or in order inside the appropriate |
| 1672 // ifdef at the bottom. The order should match the header. | 1672 // ifdef at the bottom. The order should match the header. |
| 1673 // ----------------------------------------------------------------------------- | 1673 // ----------------------------------------------------------------------------- |
| 1674 | 1674 |
| 1675 } // namespace switches | 1675 } // namespace switches |
| OLD | NEW |