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

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

Issue 69623002: Add new flag for Notification Center features that are not ready yet. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 | « chrome/app/generated_resources.grd ('k') | ui/message_center/message_center_switches.h » ('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 1341 matching lines...) Expand 10 before | Expand all | Expand 10 after
1352 { 1352 {
1353 "enable-rich-notifications", 1353 "enable-rich-notifications",
1354 IDS_FLAGS_ENABLE_RICH_NOTIFICATIONS_NAME, 1354 IDS_FLAGS_ENABLE_RICH_NOTIFICATIONS_NAME,
1355 IDS_FLAGS_ENABLE_RICH_NOTIFICATIONS_DESCRIPTION, 1355 IDS_FLAGS_ENABLE_RICH_NOTIFICATIONS_DESCRIPTION,
1356 kOsWin | kOsMac, 1356 kOsWin | kOsMac,
1357 ENABLE_DISABLE_VALUE_TYPE( 1357 ENABLE_DISABLE_VALUE_TYPE(
1358 message_center::switches::kEnableRichNotifications, 1358 message_center::switches::kEnableRichNotifications,
1359 message_center::switches::kDisableRichNotifications) 1359 message_center::switches::kDisableRichNotifications)
1360 }, 1360 },
1361 { 1361 {
1362 "enable-experimental-notification-ui",
1363 IDS_FLAGS_ENABLE_EXPERIMENTAL_NOTIFICATION_UI_NAME,
1364 IDS_FLAGS_ENABLE_EXPERIMENTAL_NOTIFICATION_UI_DESCRIPTION,
1365 kOsDesktop,
1366 SINGLE_VALUE_TYPE(
1367 message_center::switches::kEnableExperimentalNotificationUI)
1368 },
1369 {
1362 "enable-sync-synced-notifications", 1370 "enable-sync-synced-notifications",
1363 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_NAME, 1371 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_NAME,
1364 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_DESCRIPTION, 1372 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_DESCRIPTION,
1365 kOsDesktop, 1373 kOsDesktop,
1366 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSyncSyncedNotifications, 1374 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSyncSyncedNotifications,
1367 switches::kDisableSyncSyncedNotifications) 1375 switches::kDisableSyncSyncedNotifications)
1368 }, 1376 },
1369 { 1377 {
1370 "disable-full-history-sync", 1378 "disable-full-history-sync",
1371 IDS_FLAGS_FULL_HISTORY_SYNC_NAME, 1379 IDS_FLAGS_FULL_HISTORY_SYNC_NAME,
(...skipping 960 matching lines...) Expand 10 before | Expand all | Expand 10 after
2332 } 2340 }
2333 2341
2334 const Experiment* GetExperiments(size_t* count) { 2342 const Experiment* GetExperiments(size_t* count) {
2335 *count = num_experiments; 2343 *count = num_experiments;
2336 return experiments; 2344 return experiments;
2337 } 2345 }
2338 2346
2339 } // namespace testing 2347 } // namespace testing
2340 2348
2341 } // namespace about_flags 2349 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | ui/message_center/message_center_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698