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

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

Issue 780363003: Delete deprecated synced notifications code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More cleanup Created 6 years 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
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 <iterator> 7 #include <iterator>
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <utility> 10 #include <utility>
(...skipping 1106 matching lines...) Expand 10 before | Expand all | Expand 10 after
1117 switches::kDisableSupervisedUserBlacklist) 1117 switches::kDisableSupervisedUserBlacklist)
1118 }, 1118 },
1119 { 1119 {
1120 "enable-supervised-user-safesites", 1120 "enable-supervised-user-safesites",
1121 IDS_FLAGS_ENABLE_SUPERVISED_USER_SAFESITES_NAME, 1121 IDS_FLAGS_ENABLE_SUPERVISED_USER_SAFESITES_NAME,
1122 IDS_FLAGS_ENABLE_SUPERVISED_USER_SAFESITES_DESCRIPTION, 1122 IDS_FLAGS_ENABLE_SUPERVISED_USER_SAFESITES_DESCRIPTION,
1123 kOsAndroid | kOsMac | kOsWin | kOsLinux | kOsCrOS, 1123 kOsAndroid | kOsMac | kOsWin | kOsLinux | kOsCrOS,
1124 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSupervisedUserSafeSites, 1124 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSupervisedUserSafeSites,
1125 switches::kDisableSupervisedUserSafeSites) 1125 switches::kDisableSupervisedUserSafeSites)
1126 }, 1126 },
1127 {
1128 "enable-sync-synced-notifications",
1129 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_NAME,
1130 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_DESCRIPTION,
1131 kOsDesktop,
1132 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSyncSyncedNotifications,
1133 switches::kDisableSyncSyncedNotifications)
1134 },
1135 #if defined(ENABLE_APP_LIST) 1127 #if defined(ENABLE_APP_LIST)
1136 { 1128 {
1137 "enable-sync-app-list", 1129 "enable-sync-app-list",
1138 IDS_FLAGS_ENABLE_SYNC_APP_LIST_NAME, 1130 IDS_FLAGS_ENABLE_SYNC_APP_LIST_NAME,
1139 IDS_FLAGS_ENABLE_SYNC_APP_LIST_DESCRIPTION, 1131 IDS_FLAGS_ENABLE_SYNC_APP_LIST_DESCRIPTION,
1140 kOsDesktop, 1132 kOsDesktop,
1141 ENABLE_DISABLE_VALUE_TYPE(app_list::switches::kEnableSyncAppList, 1133 ENABLE_DISABLE_VALUE_TYPE(app_list::switches::kEnableSyncAppList,
1142 app_list::switches::kDisableSyncAppList) 1134 app_list::switches::kDisableSyncAppList)
1143 }, 1135 },
1144 #endif 1136 #endif
(...skipping 1505 matching lines...) Expand 10 before | Expand all | Expand 10 after
2650 } 2642 }
2651 2643
2652 const Experiment* GetExperiments(size_t* count) { 2644 const Experiment* GetExperiments(size_t* count) {
2653 *count = num_experiments; 2645 *count = num_experiments;
2654 return experiments; 2646 return experiments;
2655 } 2647 }
2656 2648
2657 } // namespace testing 2649 } // namespace testing
2658 2650
2659 } // namespace about_flags 2651 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/extensions/api/synced_notifications_private/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698