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

Side by Side Diff: chrome/browser/about_flags.cc

Issue 12700016: [Sync] Add favicon sync experiment (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix nit Created 7 years, 9 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/app/generated_resources.grd ('k') | chrome/browser/sync/profile_sync_service.cc » ('j') | 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/browser/about_flags.h" 5 #include "chrome/browser/about_flags.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <iterator> 8 #include <iterator>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 #endif 538 #endif
539 }, 539 },
540 { 540 {
541 "show-autofill-type-predictions", 541 "show-autofill-type-predictions",
542 IDS_FLAGS_SHOW_AUTOFILL_TYPE_PREDICTIONS_NAME, 542 IDS_FLAGS_SHOW_AUTOFILL_TYPE_PREDICTIONS_NAME,
543 IDS_FLAGS_SHOW_AUTOFILL_TYPE_PREDICTIONS_DESCRIPTION, 543 IDS_FLAGS_SHOW_AUTOFILL_TYPE_PREDICTIONS_DESCRIPTION,
544 kOsAll, 544 kOsAll,
545 SINGLE_VALUE_TYPE(switches::kShowAutofillTypePredictions) 545 SINGLE_VALUE_TYPE(switches::kShowAutofillTypePredictions)
546 }, 546 },
547 { 547 {
548 "sync-tab-favicons", 548 "enable-sync-favicons",
549 IDS_FLAGS_SYNC_TAB_FAVICONS_NAME, 549 IDS_FLAGS_ENABLE_SYNC_FAVICONS_NAME,
550 IDS_FLAGS_SYNC_TAB_FAVICONS_DESCRIPTION, 550 IDS_FLAGS_ENABLE_SYNC_FAVICONS_DESCRIPTION,
551 kOsAll, 551 kOsAll,
552 SINGLE_VALUE_TYPE(switches::kSyncTabFavicons) 552 SINGLE_VALUE_TYPE(switches::kEnableSyncFavicons)
553 }, 553 },
554 { 554 {
555 "sync-keystore-encryption", 555 "sync-keystore-encryption",
556 IDS_FLAGS_SYNC_KEYSTORE_ENCRYPTION_NAME, 556 IDS_FLAGS_SYNC_KEYSTORE_ENCRYPTION_NAME,
557 IDS_FLAGS_SYNC_KEYSTORE_ENCRYPTION_DESCRIPTION, 557 IDS_FLAGS_SYNC_KEYSTORE_ENCRYPTION_DESCRIPTION,
558 kOsAll, 558 kOsAll,
559 SINGLE_VALUE_TYPE(switches::kSyncKeystoreEncryption) 559 SINGLE_VALUE_TYPE(switches::kSyncKeystoreEncryption)
560 }, 560 },
561 { 561 {
562 "enable-gesture-tap-highlight", 562 "enable-gesture-tap-highlight",
(...skipping 1168 matching lines...) Expand 10 before | Expand all | Expand 10 after
1731 } 1731 }
1732 1732
1733 const Experiment* GetExperiments(size_t* count) { 1733 const Experiment* GetExperiments(size_t* count) {
1734 *count = num_experiments; 1734 *count = num_experiments;
1735 return experiments; 1735 return experiments;
1736 } 1736 }
1737 1737
1738 } // namespace testing 1738 } // namespace testing
1739 1739
1740 } // namespace about_flags 1740 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/sync/profile_sync_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698