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 <iterator> | 7 #include <iterator> |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <utility> | 10 #include <utility> |
(...skipping 1109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1120 switches::kDisableSupervisedUserBlacklist) | 1120 switches::kDisableSupervisedUserBlacklist) |
1121 }, | 1121 }, |
1122 { | 1122 { |
1123 "enable-supervised-user-safesites", | 1123 "enable-supervised-user-safesites", |
1124 IDS_FLAGS_ENABLE_SUPERVISED_USER_SAFESITES_NAME, | 1124 IDS_FLAGS_ENABLE_SUPERVISED_USER_SAFESITES_NAME, |
1125 IDS_FLAGS_ENABLE_SUPERVISED_USER_SAFESITES_DESCRIPTION, | 1125 IDS_FLAGS_ENABLE_SUPERVISED_USER_SAFESITES_DESCRIPTION, |
1126 kOsAndroid | kOsMac | kOsWin | kOsLinux | kOsCrOS, | 1126 kOsAndroid | kOsMac | kOsWin | kOsLinux | kOsCrOS, |
1127 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSupervisedUserSafeSites, | 1127 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSupervisedUserSafeSites, |
1128 switches::kDisableSupervisedUserSafeSites) | 1128 switches::kDisableSupervisedUserSafeSites) |
1129 }, | 1129 }, |
1130 { | |
1131 "enable-sync-synced-notifications", | |
1132 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_NAME, | |
1133 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_DESCRIPTION, | |
1134 kOsDesktop, | |
1135 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSyncSyncedNotifications, | |
1136 switches::kDisableSyncSyncedNotifications) | |
1137 }, | |
1138 #if defined(ENABLE_APP_LIST) | 1130 #if defined(ENABLE_APP_LIST) |
1139 { | 1131 { |
1140 "enable-sync-app-list", | 1132 "enable-sync-app-list", |
1141 IDS_FLAGS_ENABLE_SYNC_APP_LIST_NAME, | 1133 IDS_FLAGS_ENABLE_SYNC_APP_LIST_NAME, |
1142 IDS_FLAGS_ENABLE_SYNC_APP_LIST_DESCRIPTION, | 1134 IDS_FLAGS_ENABLE_SYNC_APP_LIST_DESCRIPTION, |
1143 kOsDesktop, | 1135 kOsDesktop, |
1144 ENABLE_DISABLE_VALUE_TYPE(app_list::switches::kEnableSyncAppList, | 1136 ENABLE_DISABLE_VALUE_TYPE(app_list::switches::kEnableSyncAppList, |
1145 app_list::switches::kDisableSyncAppList) | 1137 app_list::switches::kDisableSyncAppList) |
1146 }, | 1138 }, |
1147 #endif | 1139 #endif |
(...skipping 1474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2622 } | 2614 } |
2623 | 2615 |
2624 const Experiment* GetExperiments(size_t* count) { | 2616 const Experiment* GetExperiments(size_t* count) { |
2625 *count = num_experiments; | 2617 *count = num_experiments; |
2626 return experiments; | 2618 return experiments; |
2627 } | 2619 } |
2628 | 2620 |
2629 } // namespace testing | 2621 } // namespace testing |
2630 | 2622 |
2631 } // namespace about_flags | 2623 } // namespace about_flags |
OLD | NEW |