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

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

Issue 8334030: Merge search engines sync data type with Preferences. Sync the default search provider. Add some ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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 315 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 326
327 // Disables syncing of extensions. 327 // Disables syncing of extensions.
328 const char kDisableSyncExtensions[] = "disable-sync-extensions"; 328 const char kDisableSyncExtensions[] = "disable-sync-extensions";
329 329
330 // Disables syncing browser passwords. 330 // Disables syncing browser passwords.
331 const char kDisableSyncPasswords[] = "disable-sync-passwords"; 331 const char kDisableSyncPasswords[] = "disable-sync-passwords";
332 332
333 // Disables syncing of preferences. 333 // Disables syncing of preferences.
334 const char kDisableSyncPreferences[] = "disable-sync-preferences"; 334 const char kDisableSyncPreferences[] = "disable-sync-preferences";
335 335
336 // Disable syncing custom search engines.
337 const char kDisableSyncSearchEngines[] = "disable-sync-search-engines";
338
336 // Disables syncing of themes. 339 // Disables syncing of themes.
337 const char kDisableSyncThemes[] = "disable-sync-themes"; 340 const char kDisableSyncThemes[] = "disable-sync-themes";
338 341
339 // Disables syncing browser typed urls. 342 // Disables syncing browser typed urls.
340 const char kDisableSyncTypedUrls[] = "disable-sync-typed-urls"; 343 const char kDisableSyncTypedUrls[] = "disable-sync-typed-urls";
341 344
342 // TabCloseableStateWatcher disallows closing of tabs and browsers under 345 // TabCloseableStateWatcher disallows closing of tabs and browsers under
343 // certain situations on ChromeOS. Some tests expect tabs or browsers to close, 346 // certain situations on ChromeOS. Some tests expect tabs or browsers to close,
344 // so we need a switch to disable the watcher. 347 // so we need a switch to disable the watcher.
345 const char kDisableTabCloseableStateWatcher[] = 348 const char kDisableTabCloseableStateWatcher[] =
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
529 532
530 // On platforms that support it, enables smooth scroll animation. 533 // On platforms that support it, enables smooth scroll animation.
531 const char kEnableSmoothScrolling[] = "enable-smooth-scrolling"; 534 const char kEnableSmoothScrolling[] = "enable-smooth-scrolling";
532 535
533 // Enables syncing extension settings. 536 // Enables syncing extension settings.
534 const char kEnableSyncExtensionSettings[] = "enable-sync-extension-settings"; 537 const char kEnableSyncExtensionSettings[] = "enable-sync-extension-settings";
535 538
536 // Enables OAuth sign-in for sync. 539 // Enables OAuth sign-in for sync.
537 const char kEnableSyncOAuth[] = "enable-sync-oauth"; 540 const char kEnableSyncOAuth[] = "enable-sync-oauth";
538 541
539 // Enables syncing custom search engines.
540 const char kEnableSyncSearchEngines[] = "enable-sync-search-engines";
541
542 // Enables syncing browser sessions. 542 // Enables syncing browser sessions.
543 const char kEnableSyncTabs[] = "enable-sync-tabs"; 543 const char kEnableSyncTabs[] = "enable-sync-tabs";
544 544
545 // Enables syncing browser sessions for other synced clients. 545 // Enables syncing browser sessions for other synced clients.
546 const char kEnableSyncTabsForOtherClients[] = 546 const char kEnableSyncTabsForOtherClients[] =
547 "enable-sync-tabs-for-other-clients"; 547 "enable-sync-tabs-for-other-clients";
548 548
549 // Enable syncing app notifications. 549 // Enable syncing app notifications.
550 const char kEnableSyncAppNotifications[] = "enable-sync-app-notifications"; 550 const char kEnableSyncAppNotifications[] = "enable-sync-app-notifications";
551 551
(...skipping 742 matching lines...) Expand 10 before | Expand all | Expand 10 after
1294 1294
1295 // ----------------------------------------------------------------------------- 1295 // -----------------------------------------------------------------------------
1296 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1296 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1297 // 1297 //
1298 // You were going to just dump your switches here, weren't you? Instead, please 1298 // You were going to just dump your switches here, weren't you? Instead, please
1299 // put them in alphabetical order above, or in order inside the appropriate 1299 // put them in alphabetical order above, or in order inside the appropriate
1300 // ifdef at the bottom. The order should match the header. 1300 // ifdef at the bottom. The order should match the header.
1301 // ----------------------------------------------------------------------------- 1301 // -----------------------------------------------------------------------------
1302 1302
1303 } // namespace switches 1303 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698