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 1341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Loading... |
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 |
OLD | NEW |