| 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 1349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1360 const char kSyncInvalidateXmppLogin[] = "sync-invalidate-xmpp-login"; | 1360 const char kSyncInvalidateXmppLogin[] = "sync-invalidate-xmpp-login"; |
| 1361 | 1361 |
| 1362 // Enable support for keystore key based encryption. | 1362 // Enable support for keystore key based encryption. |
| 1363 const char kSyncKeystoreEncryption[] = "sync-keystore-encryption"; | 1363 const char kSyncKeystoreEncryption[] = "sync-keystore-encryption"; |
| 1364 | 1364 |
| 1365 // This flag causes sync to retry very quickly (see polling_constants.h) the | 1365 // This flag causes sync to retry very quickly (see polling_constants.h) the |
| 1366 // when it encounters an error, as the first step towards exponential backoff. | 1366 // when it encounters an error, as the first step towards exponential backoff. |
| 1367 const char kSyncShortInitialRetryOverride[] = | 1367 const char kSyncShortInitialRetryOverride[] = |
| 1368 "sync-short-initial-retry-override"; | 1368 "sync-short-initial-retry-override"; |
| 1369 | 1369 |
| 1370 // Overrides the default notification method for sync. | |
| 1371 const char kSyncNotificationMethod[] = "sync-notification-method"; | |
| 1372 | |
| 1373 // Overrides the default host:port used for sync notifications. | 1370 // Overrides the default host:port used for sync notifications. |
| 1374 const char kSyncNotificationHostPort[] = "sync-notification-host-port"; | 1371 const char kSyncNotificationHostPort[] = "sync-notification-host-port"; |
| 1375 | 1372 |
| 1376 // Overrides the default server used for profile sync. | 1373 // Overrides the default server used for profile sync. |
| 1377 const char kSyncServiceURL[] = "sync-url"; | 1374 const char kSyncServiceURL[] = "sync-url"; |
| 1378 | 1375 |
| 1379 // Enables syncing of favicons as part of tab sync. | 1376 // Enables syncing of favicons as part of tab sync. |
| 1380 const char kSyncTabFavicons[] = "sync-tab-favicons"; | 1377 const char kSyncTabFavicons[] = "sync-tab-favicons"; |
| 1381 | 1378 |
| 1382 // Makes the sync code to throw an unrecoverable error after initialization. | 1379 // Makes the sync code to throw an unrecoverable error after initialization. |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1615 | 1612 |
| 1616 // ----------------------------------------------------------------------------- | 1613 // ----------------------------------------------------------------------------- |
| 1617 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1614 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1618 // | 1615 // |
| 1619 // You were going to just dump your switches here, weren't you? Instead, please | 1616 // You were going to just dump your switches here, weren't you? Instead, please |
| 1620 // put them in alphabetical order above, or in order inside the appropriate | 1617 // put them in alphabetical order above, or in order inside the appropriate |
| 1621 // ifdef at the bottom. The order should match the header. | 1618 // ifdef at the bottom. The order should match the header. |
| 1622 // ----------------------------------------------------------------------------- | 1619 // ----------------------------------------------------------------------------- |
| 1623 | 1620 |
| 1624 } // namespace switches | 1621 } // namespace switches |
| OLD | NEW |