| 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 1227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1238 ENABLE_DISABLE_VALUE_TYPE( | 1238 ENABLE_DISABLE_VALUE_TYPE( |
| 1239 message_center::switches::kEnableRichNotifications, | 1239 message_center::switches::kEnableRichNotifications, |
| 1240 message_center::switches::kDisableRichNotifications) | 1240 message_center::switches::kDisableRichNotifications) |
| 1241 }, | 1241 }, |
| 1242 #endif | 1242 #endif |
| 1243 { | 1243 { |
| 1244 "full-history-sync", | 1244 "full-history-sync", |
| 1245 IDS_FLAGS_FULL_HISTORY_SYNC_NAME, | 1245 IDS_FLAGS_FULL_HISTORY_SYNC_NAME, |
| 1246 IDS_FLAGS_FULL_HISTORY_SYNC_DESCRIPTION, | 1246 IDS_FLAGS_FULL_HISTORY_SYNC_DESCRIPTION, |
| 1247 kOsAll, | 1247 kOsAll, |
| 1248 SINGLE_VALUE_TYPE(switches::kHistoryEnableFullHistorySync) | 1248 ENABLE_DISABLE_VALUE_TYPE(switches::kHistoryEnableFullHistorySync, |
| 1249 switches::kHistoryDisableFullHistorySync) |
| 1249 }, | 1250 }, |
| 1250 { | 1251 { |
| 1251 "enable-usermedia-screen-capture", | 1252 "enable-usermedia-screen-capture", |
| 1252 IDS_FLAGS_ENABLE_SCREEN_CAPTURE_NAME, | 1253 IDS_FLAGS_ENABLE_SCREEN_CAPTURE_NAME, |
| 1253 IDS_FLAGS_ENABLE_SCREEN_CAPTURE_DESCRIPTION, | 1254 IDS_FLAGS_ENABLE_SCREEN_CAPTURE_DESCRIPTION, |
| 1254 kOsDesktop, | 1255 kOsDesktop, |
| 1255 SINGLE_VALUE_TYPE(switches::kEnableUserMediaScreenCapturing) | 1256 SINGLE_VALUE_TYPE(switches::kEnableUserMediaScreenCapturing) |
| 1256 }, | 1257 }, |
| 1257 { | 1258 { |
| 1258 "enable-apps-devtool-app", | 1259 "enable-apps-devtool-app", |
| (...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1835 } | 1836 } |
| 1836 | 1837 |
| 1837 const Experiment* GetExperiments(size_t* count) { | 1838 const Experiment* GetExperiments(size_t* count) { |
| 1838 *count = num_experiments; | 1839 *count = num_experiments; |
| 1839 return experiments; | 1840 return experiments; |
| 1840 } | 1841 } |
| 1841 | 1842 |
| 1842 } // namespace testing | 1843 } // namespace testing |
| 1843 | 1844 |
| 1844 } // namespace about_flags | 1845 } // namespace about_flags |
| OLD | NEW |