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