| 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 1298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1309 IDS_FLAGS_ENABLE_TOUCH_EDITING_NAME, | 1309 IDS_FLAGS_ENABLE_TOUCH_EDITING_NAME, |
| 1310 IDS_FLAGS_ENABLE_TOUCH_EDITING_DESCRIPTION, | 1310 IDS_FLAGS_ENABLE_TOUCH_EDITING_DESCRIPTION, |
| 1311 kOsCrOS, | 1311 kOsCrOS, |
| 1312 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableTouchEditing, | 1312 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableTouchEditing, |
| 1313 switches::kDisableTouchEditing) | 1313 switches::kDisableTouchEditing) |
| 1314 }, | 1314 }, |
| 1315 { | 1315 { |
| 1316 "enable-rich-notifications", | 1316 "enable-rich-notifications", |
| 1317 IDS_FLAGS_ENABLE_RICH_NOTIFICATIONS_NAME, | 1317 IDS_FLAGS_ENABLE_RICH_NOTIFICATIONS_NAME, |
| 1318 IDS_FLAGS_ENABLE_RICH_NOTIFICATIONS_DESCRIPTION, | 1318 IDS_FLAGS_ENABLE_RICH_NOTIFICATIONS_DESCRIPTION, |
| 1319 kOsWin | kOsMac, | 1319 kOsWin, |
| 1320 ENABLE_DISABLE_VALUE_TYPE( | 1320 ENABLE_DISABLE_VALUE_TYPE( |
| 1321 message_center::switches::kEnableRichNotifications, | 1321 message_center::switches::kEnableRichNotifications, |
| 1322 message_center::switches::kDisableRichNotifications) | 1322 message_center::switches::kDisableRichNotifications) |
| 1323 }, | 1323 }, |
| 1324 { | 1324 { |
| 1325 "enable-sync-synced-notifications", | 1325 "enable-sync-synced-notifications", |
| 1326 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_NAME, | 1326 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_NAME, |
| 1327 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_DESCRIPTION, | 1327 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_DESCRIPTION, |
| 1328 kOsDesktop, | 1328 kOsDesktop, |
| 1329 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSyncSyncedNotifications, | 1329 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSyncSyncedNotifications, |
| (...skipping 805 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2135 } | 2135 } |
| 2136 | 2136 |
| 2137 const Experiment* GetExperiments(size_t* count) { | 2137 const Experiment* GetExperiments(size_t* count) { |
| 2138 *count = num_experiments; | 2138 *count = num_experiments; |
| 2139 return experiments; | 2139 return experiments; |
| 2140 } | 2140 } |
| 2141 | 2141 |
| 2142 } // namespace testing | 2142 } // namespace testing |
| 2143 | 2143 |
| 2144 } // namespace about_flags | 2144 } // namespace about_flags |
| OLD | NEW |