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

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

Issue 7775008: Enable sync for the settings from the Extension Settings API. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Review #6 Created 9 years, 3 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 489 matching lines...) Expand 10 before | Expand all | Expand 10 after
500 500
501 // Enable the IsSearchProviderInstalled and InstallSearchProvider with an extra 501 // Enable the IsSearchProviderInstalled and InstallSearchProvider with an extra
502 // parameter to indicate if the provider should be the default. 502 // parameter to indicate if the provider should be the default.
503 const char kEnableSearchProviderApiV2[] = "enable-search-provider-api-v2"; 503 const char kEnableSearchProviderApiV2[] = "enable-search-provider-api-v2";
504 504
505 // Enable the use of the ShortcutsProvider for autocomplete results. 505 // Enable the use of the ShortcutsProvider for autocomplete results.
506 const char kEnableShortcutsProvider[] = "enable-shortcuts-provider"; 506 const char kEnableShortcutsProvider[] = "enable-shortcuts-provider";
507 507
508 // On platforms that support it, enable smooth scroll animation. 508 // On platforms that support it, enable smooth scroll animation.
509 const char kEnableSmoothScrolling[] = "enable-smooth-scrolling"; 509 const char kEnableSmoothScrolling[] = "enable-smooth-scrolling";
510
511 // Enable syncing extension settings.
512 const char kEnableSyncExtensionSettings[] = "enable-sync-extension-settings";
513
510 // Enable OAuth sign-in for sync. 514 // Enable OAuth sign-in for sync.
511 const char kEnableSyncOAuth[] = "enable-sync-oauth"; 515 const char kEnableSyncOAuth[] = "enable-sync-oauth";
512 516
513 // Enable syncing custom search engines. 517 // Enable syncing custom search engines.
514 const char kEnableSyncSearchEngines[] = "enable-sync-search-engines"; 518 const char kEnableSyncSearchEngines[] = "enable-sync-search-engines";
515 519
516 // Enable syncing browser sessions. 520 // Enable syncing browser sessions.
517 const char kEnableSyncTabs[] = "enable-sync-tabs"; 521 const char kEnableSyncTabs[] = "enable-sync-tabs";
518 522
519 // Enable syncing browser sessions for other synced clients. 523 // Enable syncing browser sessions for other synced clients.
(...skipping 706 matching lines...) Expand 10 before | Expand all | Expand 10 after
1226 1230
1227 // ----------------------------------------------------------------------------- 1231 // -----------------------------------------------------------------------------
1228 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1232 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1229 // 1233 //
1230 // You were going to just dump your switches here, weren't you? Instead, 1234 // You were going to just dump your switches here, weren't you? Instead,
1231 // please put them in alphabetical order above, or in order inside the 1235 // please put them in alphabetical order above, or in order inside the
1232 // appropriate ifdef at the bottom. The order should match the header. 1236 // appropriate ifdef at the bottom. The order should match the header.
1233 // ----------------------------------------------------------------------------- 1237 // -----------------------------------------------------------------------------
1234 1238
1235 } // namespace switches 1239 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698