| 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 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 551 SINGLE_VALUE_TYPE(switches::kShowAutofillTypePredictions) | 551 SINGLE_VALUE_TYPE(switches::kShowAutofillTypePredictions) |
| 552 }, | 552 }, |
| 553 { | 553 { |
| 554 "sync-tab-favicons", | 554 "sync-tab-favicons", |
| 555 IDS_FLAGS_SYNC_TAB_FAVICONS_NAME, | 555 IDS_FLAGS_SYNC_TAB_FAVICONS_NAME, |
| 556 IDS_FLAGS_SYNC_TAB_FAVICONS_DESCRIPTION, | 556 IDS_FLAGS_SYNC_TAB_FAVICONS_DESCRIPTION, |
| 557 kOsAll, | 557 kOsAll, |
| 558 SINGLE_VALUE_TYPE(switches::kSyncTabFavicons) | 558 SINGLE_VALUE_TYPE(switches::kSyncTabFavicons) |
| 559 }, | 559 }, |
| 560 { | 560 { |
| 561 "sync-app-notifications", | |
| 562 IDS_FLAGS_SYNC_APP_NOTIFICATIONS_NAME, | |
| 563 IDS_FLAGS_SYNC_APP_NOTIFICATIONS_DESCRIPTION, | |
| 564 kOsDesktop, | |
| 565 SINGLE_VALUE_TYPE(switches::kDisableSyncAppNotifications) | |
| 566 }, | |
| 567 { | |
| 568 "sync-keystore-encryption", | 561 "sync-keystore-encryption", |
| 569 IDS_FLAGS_SYNC_KEYSTORE_ENCRYPTION_NAME, | 562 IDS_FLAGS_SYNC_KEYSTORE_ENCRYPTION_NAME, |
| 570 IDS_FLAGS_SYNC_KEYSTORE_ENCRYPTION_DESCRIPTION, | 563 IDS_FLAGS_SYNC_KEYSTORE_ENCRYPTION_DESCRIPTION, |
| 571 kOsAll, | 564 kOsAll, |
| 572 SINGLE_VALUE_TYPE(switches::kSyncKeystoreEncryption) | 565 SINGLE_VALUE_TYPE(switches::kSyncKeystoreEncryption) |
| 573 }, | 566 }, |
| 574 { | 567 { |
| 575 "enable-gesture-tap-highlight", | 568 "enable-gesture-tap-highlight", |
| 576 IDS_FLAGS_ENABLE_GESTURE_TAP_HIGHLIGHTING_NAME, | 569 IDS_FLAGS_ENABLE_GESTURE_TAP_HIGHLIGHTING_NAME, |
| 577 IDS_FLAGS_ENABLE_GESTURE_TAP_HIGHLIGHTING_DESCRIPTION, | 570 IDS_FLAGS_ENABLE_GESTURE_TAP_HIGHLIGHTING_DESCRIPTION, |
| (...skipping 1179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1757 } | 1750 } |
| 1758 | 1751 |
| 1759 const Experiment* GetExperiments(size_t* count) { | 1752 const Experiment* GetExperiments(size_t* count) { |
| 1760 *count = num_experiments; | 1753 *count = num_experiments; |
| 1761 return experiments; | 1754 return experiments; |
| 1762 } | 1755 } |
| 1763 | 1756 |
| 1764 } // namespace testing | 1757 } // namespace testing |
| 1765 | 1758 |
| 1766 } // namespace about_flags | 1759 } // namespace about_flags |
| OLD | NEW |