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