| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |