Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(479)

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 15580002: Make use of InvalidationService (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More review fixes Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
1593 1590
1594 // ----------------------------------------------------------------------------- 1591 // -----------------------------------------------------------------------------
1595 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1592 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1596 // 1593 //
1597 // You were going to just dump your switches here, weren't you? Instead, please 1594 // You were going to just dump your switches here, weren't you? Instead, please
1598 // put them in alphabetical order above, or in order inside the appropriate 1595 // put them in alphabetical order above, or in order inside the appropriate
1599 // ifdef at the bottom. The order should match the header. 1596 // ifdef at the bottom. The order should match the header.
1600 // ----------------------------------------------------------------------------- 1597 // -----------------------------------------------------------------------------
1601 1598
1602 } // namespace switches 1599 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698