| 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 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 MULTI_VALUE_TYPE(kGDIPresentChoices) | 324 MULTI_VALUE_TYPE(kGDIPresentChoices) |
| 325 }, | 325 }, |
| 326 { | 326 { |
| 327 "disable-accelerated-2d-canvas", | 327 "disable-accelerated-2d-canvas", |
| 328 IDS_FLAGS_DISABLE_ACCELERATED_2D_CANVAS_NAME, | 328 IDS_FLAGS_DISABLE_ACCELERATED_2D_CANVAS_NAME, |
| 329 IDS_FLAGS_DISABLE_ACCELERATED_2D_CANVAS_DESCRIPTION, | 329 IDS_FLAGS_DISABLE_ACCELERATED_2D_CANVAS_DESCRIPTION, |
| 330 kOsAll, | 330 kOsAll, |
| 331 SINGLE_VALUE_TYPE(switches::kDisableAccelerated2dCanvas) | 331 SINGLE_VALUE_TYPE(switches::kDisableAccelerated2dCanvas) |
| 332 }, | 332 }, |
| 333 { | 333 { |
| 334 "disable-deferred-2d-canvas", | |
| 335 IDS_FLAGS_DISABLE_DEFERRED_2D_CANVAS_NAME, | |
| 336 IDS_FLAGS_DISABLE_DEFERRED_2D_CANVAS_DESCRIPTION, | |
| 337 kOsAll, | |
| 338 SINGLE_VALUE_TYPE(switches::kDisableDeferred2dCanvas) | |
| 339 }, | |
| 340 { | |
| 341 "disable-threaded-animation", | 334 "disable-threaded-animation", |
| 342 IDS_FLAGS_DISABLE_THREADED_ANIMATION_NAME, | 335 IDS_FLAGS_DISABLE_THREADED_ANIMATION_NAME, |
| 343 IDS_FLAGS_DISABLE_THREADED_ANIMATION_DESCRIPTION, | 336 IDS_FLAGS_DISABLE_THREADED_ANIMATION_DESCRIPTION, |
| 344 kOsAll, | 337 kOsAll, |
| 345 SINGLE_VALUE_TYPE(cc::switches::kDisableThreadedAnimation) | 338 SINGLE_VALUE_TYPE(cc::switches::kDisableThreadedAnimation) |
| 346 }, | 339 }, |
| 347 { | 340 { |
| 348 "composited-layer-borders", | 341 "composited-layer-borders", |
| 349 IDS_FLAGS_COMPOSITED_LAYER_BORDERS, | 342 IDS_FLAGS_COMPOSITED_LAYER_BORDERS, |
| 350 IDS_FLAGS_COMPOSITED_LAYER_BORDERS_DESCRIPTION, | 343 IDS_FLAGS_COMPOSITED_LAYER_BORDERS_DESCRIPTION, |
| (...skipping 1379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1730 } | 1723 } |
| 1731 | 1724 |
| 1732 const Experiment* GetExperiments(size_t* count) { | 1725 const Experiment* GetExperiments(size_t* count) { |
| 1733 *count = num_experiments; | 1726 *count = num_experiments; |
| 1734 return experiments; | 1727 return experiments; |
| 1735 } | 1728 } |
| 1736 | 1729 |
| 1737 } // namespace testing | 1730 } // namespace testing |
| 1738 | 1731 |
| 1739 } // namespace about_flags | 1732 } // namespace about_flags |
| OLD | NEW |