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

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

Issue 10455012: [Sync] Add support for performing a GetKey on startup. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 8 years, 5 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 | Annotate | Revision Log
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 1216 matching lines...) Expand 10 before | Expand all | Expand 10 after
1227 // of day. 1227 // of day.
1228 const char kSuggestionNtpLinearFilter[] = "suggestion-ntp-linear-filter"; 1228 const char kSuggestionNtpLinearFilter[] = "suggestion-ntp-linear-filter";
1229 1229
1230 // Allows insecure XMPP connections for sync (for testing). 1230 // Allows insecure XMPP connections for sync (for testing).
1231 const char kSyncAllowInsecureXmppConnection[] = 1231 const char kSyncAllowInsecureXmppConnection[] =
1232 "sync-allow-insecure-xmpp-connection"; 1232 "sync-allow-insecure-xmpp-connection";
1233 1233
1234 // Invalidates any login info passed into sync's XMPP connection. 1234 // Invalidates any login info passed into sync's XMPP connection.
1235 const char kSyncInvalidateXmppLogin[] = "sync-invalidate-xmpp-login"; 1235 const char kSyncInvalidateXmppLogin[] = "sync-invalidate-xmpp-login";
1236 1236
1237 // Enable support for keystore key based encryption.
1238 const char kSyncKeystoreEncryption[] = "sync-keystore-encryption";
1239
1237 // Overrides the default notification method for sync. 1240 // Overrides the default notification method for sync.
1238 const char kSyncNotificationMethod[] = "sync-notification-method"; 1241 const char kSyncNotificationMethod[] = "sync-notification-method";
1239 1242
1240 // Overrides the default host:port used for sync notifications. 1243 // Overrides the default host:port used for sync notifications.
1241 const char kSyncNotificationHostPort[] = "sync-notification-host-port"; 1244 const char kSyncNotificationHostPort[] = "sync-notification-host-port";
1242 1245
1243 // Overrides the default server used for profile sync. 1246 // Overrides the default server used for profile sync.
1244 const char kSyncServiceURL[] = "sync-url"; 1247 const char kSyncServiceURL[] = "sync-url";
1245 1248
1246 // Enables syncing of favicons as part of tab sync. 1249 // Enables syncing of favicons as part of tab sync.
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
1508 1511
1509 // ----------------------------------------------------------------------------- 1512 // -----------------------------------------------------------------------------
1510 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1513 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1511 // 1514 //
1512 // You were going to just dump your switches here, weren't you? Instead, please 1515 // You were going to just dump your switches here, weren't you? Instead, please
1513 // put them in alphabetical order above, or in order inside the appropriate 1516 // put them in alphabetical order above, or in order inside the appropriate
1514 // ifdef at the bottom. The order should match the header. 1517 // ifdef at the bottom. The order should match the header.
1515 // ----------------------------------------------------------------------------- 1518 // -----------------------------------------------------------------------------
1516 1519
1517 } // namespace switches 1520 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698