| 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 <iterator> | 7 #include <iterator> |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 2315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2326 IDS_FLAGS_OZONE_TEST_SINGLE_HARDWARE_OVERLAY_DESCRIPTION, | 2326 IDS_FLAGS_OZONE_TEST_SINGLE_HARDWARE_OVERLAY_DESCRIPTION, |
| 2327 kOsCrOS, | 2327 kOsCrOS, |
| 2328 SINGLE_VALUE_TYPE(switches::kOzoneTestSingleOverlaySupport) | 2328 SINGLE_VALUE_TYPE(switches::kOzoneTestSingleOverlaySupport) |
| 2329 }, | 2329 }, |
| 2330 #endif // defined(OS_CHROMEOS) && defined(USE_OZONE) | 2330 #endif // defined(OS_CHROMEOS) && defined(USE_OZONE) |
| 2331 { | 2331 { |
| 2332 "v8-pac-mojo-out-of-process", | 2332 "v8-pac-mojo-out-of-process", |
| 2333 IDS_FLAGS_V8_PAC_MOJO_OUT_OF_PROCESS_NAME, | 2333 IDS_FLAGS_V8_PAC_MOJO_OUT_OF_PROCESS_NAME, |
| 2334 IDS_FLAGS_V8_PAC_MOJO_OUT_OF_PROCESS_DESCRIPTION, | 2334 IDS_FLAGS_V8_PAC_MOJO_OUT_OF_PROCESS_DESCRIPTION, |
| 2335 kOsDesktop, | 2335 kOsDesktop, |
| 2336 SINGLE_VALUE_TYPE(switches::kV8PacMojoOutOfProcess), | 2336 ENABLE_DISABLE_VALUE_TYPE(switches::kV8PacMojoOutOfProcess, |
| 2337 switches::kDisableOutOfProcessPac) |
| 2337 }, | 2338 }, |
| 2338 #if defined(ENABLE_MEDIA_ROUTER) | 2339 #if defined(ENABLE_MEDIA_ROUTER) |
| 2339 { | 2340 { |
| 2340 "enable-media-router", | 2341 "enable-media-router", |
| 2341 IDS_FLAGS_ENABLE_MEDIA_ROUTER_NAME, | 2342 IDS_FLAGS_ENABLE_MEDIA_ROUTER_NAME, |
| 2342 IDS_FLAGS_ENABLE_MEDIA_ROUTER_DESCRIPTION, | 2343 IDS_FLAGS_ENABLE_MEDIA_ROUTER_DESCRIPTION, |
| 2343 kOsAll, | 2344 kOsAll, |
| 2344 SINGLE_VALUE_TYPE(switches::kEnableMediaRouter) | 2345 SINGLE_VALUE_TYPE(switches::kEnableMediaRouter) |
| 2345 }, | 2346 }, |
| 2346 #endif // defined(ENABLE_MEDIA_ROUTER) | 2347 #endif // defined(ENABLE_MEDIA_ROUTER) |
| (...skipping 650 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2997 } | 2998 } |
| 2998 | 2999 |
| 2999 const Experiment* GetExperiments(size_t* count) { | 3000 const Experiment* GetExperiments(size_t* count) { |
| 3000 *count = num_experiments; | 3001 *count = num_experiments; |
| 3001 return experiments; | 3002 return experiments; |
| 3002 } | 3003 } |
| 3003 | 3004 |
| 3004 } // namespace testing | 3005 } // namespace testing |
| 3005 | 3006 |
| 3006 } // namespace about_flags | 3007 } // namespace about_flags |
| OLD | NEW |