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

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

Issue 10659031: Merge 144108 - [Sync] Disable search engines datatype by default. (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1132_43/src/
Patch Set: Created 8 years, 6 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
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 375 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 386
387 // Disables syncing of extensions. 387 // Disables syncing of extensions.
388 const char kDisableSyncExtensions[] = "disable-sync-extensions"; 388 const char kDisableSyncExtensions[] = "disable-sync-extensions";
389 389
390 // Disables syncing browser passwords. 390 // Disables syncing browser passwords.
391 const char kDisableSyncPasswords[] = "disable-sync-passwords"; 391 const char kDisableSyncPasswords[] = "disable-sync-passwords";
392 392
393 // Disables syncing of preferences. 393 // Disables syncing of preferences.
394 const char kDisableSyncPreferences[] = "disable-sync-preferences"; 394 const char kDisableSyncPreferences[] = "disable-sync-preferences";
395 395
396 // Disable syncing custom search engines. 396 // Enable syncing custom search engines.
397 const char kDisableSyncSearchEngines[] = "disable-sync-search-engines"; 397 const char kEnableSyncSearchEngines[] = "enable-sync-search-engines";
398 398
399 // Disables syncing of themes. 399 // Disables syncing of themes.
400 const char kDisableSyncThemes[] = "disable-sync-themes"; 400 const char kDisableSyncThemes[] = "disable-sync-themes";
401 401
402 // Disables syncing browser typed urls. 402 // Disables syncing browser typed urls.
403 const char kDisableSyncTypedUrls[] = "disable-sync-typed-urls"; 403 const char kDisableSyncTypedUrls[] = "disable-sync-typed-urls";
404 404
405 // Disables TLS v1.0 (usually for testing purposes). 405 // Disables TLS v1.0 (usually for testing purposes).
406 const char kDisableTLS1[] = "disable-tls1"; 406 const char kDisableTLS1[] = "disable-tls1";
407 407
(...skipping 1025 matching lines...) Expand 10 before | Expand all | Expand 10 after
1433 1433
1434 // ----------------------------------------------------------------------------- 1434 // -----------------------------------------------------------------------------
1435 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1435 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1436 // 1436 //
1437 // You were going to just dump your switches here, weren't you? Instead, please 1437 // You were going to just dump your switches here, weren't you? Instead, please
1438 // put them in alphabetical order above, or in order inside the appropriate 1438 // put them in alphabetical order above, or in order inside the appropriate
1439 // ifdef at the bottom. The order should match the header. 1439 // ifdef at the bottom. The order should match the header.
1440 // ----------------------------------------------------------------------------- 1440 // -----------------------------------------------------------------------------
1441 1441
1442 } // namespace switches 1442 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698