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

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

Issue 18239002: Remove the "Enable Rich Notifications" flag on ChromeOS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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 | « no previous file | ui/message_center/message_center_util.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 1321 matching lines...) Expand 10 before | Expand all | Expand 10 after
1332 IDS_FLAGS_ENABLE_TOUCH_EDITING_NAME, 1332 IDS_FLAGS_ENABLE_TOUCH_EDITING_NAME,
1333 IDS_FLAGS_ENABLE_TOUCH_EDITING_DESCRIPTION, 1333 IDS_FLAGS_ENABLE_TOUCH_EDITING_DESCRIPTION,
1334 kOsCrOS, 1334 kOsCrOS,
1335 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableTouchEditing, 1335 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableTouchEditing,
1336 switches::kDisableTouchEditing) 1336 switches::kDisableTouchEditing)
1337 }, 1337 },
1338 { 1338 {
1339 "enable-rich-notifications", 1339 "enable-rich-notifications",
1340 IDS_FLAGS_ENABLE_RICH_NOTIFICATIONS_NAME, 1340 IDS_FLAGS_ENABLE_RICH_NOTIFICATIONS_NAME,
1341 IDS_FLAGS_ENABLE_RICH_NOTIFICATIONS_DESCRIPTION, 1341 IDS_FLAGS_ENABLE_RICH_NOTIFICATIONS_DESCRIPTION,
1342 kOsWin | kOsCrOS | kOsMac, 1342 kOsWin | kOsMac,
1343 ENABLE_DISABLE_VALUE_TYPE( 1343 ENABLE_DISABLE_VALUE_TYPE(
1344 message_center::switches::kEnableRichNotifications, 1344 message_center::switches::kEnableRichNotifications,
1345 message_center::switches::kDisableRichNotifications) 1345 message_center::switches::kDisableRichNotifications)
1346 }, 1346 },
1347 { 1347 {
1348 "enable-sync-synced-notifications", 1348 "enable-sync-synced-notifications",
1349 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_NAME, 1349 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_NAME,
1350 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_DESCRIPTION, 1350 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_DESCRIPTION,
1351 kOsDesktop, 1351 kOsDesktop,
1352 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSyncSyncedNotifications, 1352 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSyncSyncedNotifications,
(...skipping 718 matching lines...) Expand 10 before | Expand all | Expand 10 after
2071 } 2071 }
2072 2072
2073 const Experiment* GetExperiments(size_t* count) { 2073 const Experiment* GetExperiments(size_t* count) {
2074 *count = num_experiments; 2074 *count = num_experiments;
2075 return experiments; 2075 return experiments;
2076 } 2076 }
2077 2077
2078 } // namespace testing 2078 } // namespace testing
2079 2079
2080 } // namespace about_flags 2080 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | ui/message_center/message_center_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698