| 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 1333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1344 const char kSyncInvalidateXmppLogin[] = "sync-invalidate-xmpp-login"; | 1344 const char kSyncInvalidateXmppLogin[] = "sync-invalidate-xmpp-login"; |
| 1345 | 1345 |
| 1346 // Enable support for keystore key based encryption. | 1346 // Enable support for keystore key based encryption. |
| 1347 const char kSyncKeystoreEncryption[] = "sync-keystore-encryption"; | 1347 const char kSyncKeystoreEncryption[] = "sync-keystore-encryption"; |
| 1348 | 1348 |
| 1349 // This flag causes sync to retry very quickly (see polling_constants.h) the | 1349 // This flag causes sync to retry very quickly (see polling_constants.h) the |
| 1350 // when it encounters an error, as the first step towards exponential backoff. | 1350 // when it encounters an error, as the first step towards exponential backoff. |
| 1351 const char kSyncShortInitialRetryOverride[] = | 1351 const char kSyncShortInitialRetryOverride[] = |
| 1352 "sync-short-initial-retry-override"; | 1352 "sync-short-initial-retry-override"; |
| 1353 | 1353 |
| 1354 // Overrides the default notification method for sync. | |
| 1355 const char kSyncNotificationMethod[] = "sync-notification-method"; | |
| 1356 | |
| 1357 // Overrides the default host:port used for sync notifications. | 1354 // Overrides the default host:port used for sync notifications. |
| 1358 const char kSyncNotificationHostPort[] = "sync-notification-host-port"; | 1355 const char kSyncNotificationHostPort[] = "sync-notification-host-port"; |
| 1359 | 1356 |
| 1360 // Overrides the default server used for profile sync. | 1357 // Overrides the default server used for profile sync. |
| 1361 const char kSyncServiceURL[] = "sync-url"; | 1358 const char kSyncServiceURL[] = "sync-url"; |
| 1362 | 1359 |
| 1363 // Enables syncing of favicons as part of tab sync. | 1360 // Enables syncing of favicons as part of tab sync. |
| 1364 const char kSyncTabFavicons[] = "sync-tab-favicons"; | 1361 const char kSyncTabFavicons[] = "sync-tab-favicons"; |
| 1365 | 1362 |
| 1366 // Makes the sync code to throw an unrecoverable error after initialization. | 1363 // Makes the sync code to throw an unrecoverable error after initialization. |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1592 | 1589 |
| 1593 // ----------------------------------------------------------------------------- | 1590 // ----------------------------------------------------------------------------- |
| 1594 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1591 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1595 // | 1592 // |
| 1596 // You were going to just dump your switches here, weren't you? Instead, please | 1593 // You were going to just dump your switches here, weren't you? Instead, please |
| 1597 // put them in alphabetical order above, or in order inside the appropriate | 1594 // put them in alphabetical order above, or in order inside the appropriate |
| 1598 // ifdef at the bottom. The order should match the header. | 1595 // ifdef at the bottom. The order should match the header. |
| 1599 // ----------------------------------------------------------------------------- | 1596 // ----------------------------------------------------------------------------- |
| 1600 | 1597 |
| 1601 } // namespace switches | 1598 } // namespace switches |
| OLD | NEW |