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