| 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 <string.h> | 7 #include <string.h> |
| 8 | 8 |
| 9 #include <algorithm> | 9 #include <algorithm> |
| 10 #include <iterator> | 10 #include <iterator> |
| (...skipping 1258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1269 "enable-rich-notifications", | 1269 "enable-rich-notifications", |
| 1270 IDS_FLAGS_ENABLE_RICH_NOTIFICATIONS_NAME, | 1270 IDS_FLAGS_ENABLE_RICH_NOTIFICATIONS_NAME, |
| 1271 IDS_FLAGS_ENABLE_RICH_NOTIFICATIONS_DESCRIPTION, | 1271 IDS_FLAGS_ENABLE_RICH_NOTIFICATIONS_DESCRIPTION, |
| 1272 kOsWin | kOsCrOS, | 1272 kOsWin | kOsCrOS, |
| 1273 ENABLE_DISABLE_VALUE_TYPE( | 1273 ENABLE_DISABLE_VALUE_TYPE( |
| 1274 message_center::switches::kEnableRichNotifications, | 1274 message_center::switches::kEnableRichNotifications, |
| 1275 message_center::switches::kDisableRichNotifications) | 1275 message_center::switches::kDisableRichNotifications) |
| 1276 }, | 1276 }, |
| 1277 #endif | 1277 #endif |
| 1278 { | 1278 { |
| 1279 "full-history-sync", | 1279 "disable-full-history-sync", |
| 1280 IDS_FLAGS_FULL_HISTORY_SYNC_NAME, | 1280 IDS_FLAGS_FULL_HISTORY_SYNC_NAME, |
| 1281 IDS_FLAGS_FULL_HISTORY_SYNC_DESCRIPTION, | 1281 IDS_FLAGS_FULL_HISTORY_SYNC_DESCRIPTION, |
| 1282 kOsAll, | 1282 kOsAll, |
| 1283 SINGLE_VALUE_TYPE(switches::kHistoryEnableFullHistorySync) | 1283 SINGLE_VALUE_TYPE(switches::kHistoryDisableFullHistorySync) |
| 1284 }, | 1284 }, |
| 1285 { | 1285 { |
| 1286 "enable-usermedia-screen-capture", | 1286 "enable-usermedia-screen-capture", |
| 1287 IDS_FLAGS_ENABLE_SCREEN_CAPTURE_NAME, | 1287 IDS_FLAGS_ENABLE_SCREEN_CAPTURE_NAME, |
| 1288 IDS_FLAGS_ENABLE_SCREEN_CAPTURE_DESCRIPTION, | 1288 IDS_FLAGS_ENABLE_SCREEN_CAPTURE_DESCRIPTION, |
| 1289 kOsDesktop, | 1289 kOsDesktop, |
| 1290 SINGLE_VALUE_TYPE(switches::kEnableUserMediaScreenCapturing) | 1290 SINGLE_VALUE_TYPE(switches::kEnableUserMediaScreenCapturing) |
| 1291 }, | 1291 }, |
| 1292 { | 1292 { |
| 1293 "enable-apps-devtool-app", | 1293 "enable-apps-devtool-app", |
| (...skipping 606 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1900 } | 1900 } |
| 1901 | 1901 |
| 1902 const Experiment* GetExperiments(size_t* count) { | 1902 const Experiment* GetExperiments(size_t* count) { |
| 1903 *count = num_experiments; | 1903 *count = num_experiments; |
| 1904 return experiments; | 1904 return experiments; |
| 1905 } | 1905 } |
| 1906 | 1906 |
| 1907 } // namespace testing | 1907 } // namespace testing |
| 1908 | 1908 |
| 1909 } // namespace about_flags | 1909 } // namespace about_flags |
| OLD | NEW |