| 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 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 MULTI_VALUE_TYPE(kGDIPresentChoices) | 341 MULTI_VALUE_TYPE(kGDIPresentChoices) |
| 342 }, | 342 }, |
| 343 { | 343 { |
| 344 "disable-accelerated-2d-canvas", | 344 "disable-accelerated-2d-canvas", |
| 345 IDS_FLAGS_DISABLE_ACCELERATED_2D_CANVAS_NAME, | 345 IDS_FLAGS_DISABLE_ACCELERATED_2D_CANVAS_NAME, |
| 346 IDS_FLAGS_DISABLE_ACCELERATED_2D_CANVAS_DESCRIPTION, | 346 IDS_FLAGS_DISABLE_ACCELERATED_2D_CANVAS_DESCRIPTION, |
| 347 kOsAll, | 347 kOsAll, |
| 348 SINGLE_VALUE_TYPE(switches::kDisableAccelerated2dCanvas) | 348 SINGLE_VALUE_TYPE(switches::kDisableAccelerated2dCanvas) |
| 349 }, | 349 }, |
| 350 { | 350 { |
| 351 "disable-deferred-2d-canvas", | |
| 352 IDS_FLAGS_DISABLE_DEFERRED_2D_CANVAS_NAME, | |
| 353 IDS_FLAGS_DISABLE_DEFERRED_2D_CANVAS_DESCRIPTION, | |
| 354 kOsAll, | |
| 355 SINGLE_VALUE_TYPE(switches::kDisableDeferred2dCanvas) | |
| 356 }, | |
| 357 { | |
| 358 "disable-threaded-animation", | 351 "disable-threaded-animation", |
| 359 IDS_FLAGS_DISABLE_THREADED_ANIMATION_NAME, | 352 IDS_FLAGS_DISABLE_THREADED_ANIMATION_NAME, |
| 360 IDS_FLAGS_DISABLE_THREADED_ANIMATION_DESCRIPTION, | 353 IDS_FLAGS_DISABLE_THREADED_ANIMATION_DESCRIPTION, |
| 361 kOsAll, | 354 kOsAll, |
| 362 SINGLE_VALUE_TYPE(cc::switches::kDisableThreadedAnimation) | 355 SINGLE_VALUE_TYPE(cc::switches::kDisableThreadedAnimation) |
| 363 }, | 356 }, |
| 364 { | 357 { |
| 365 "composited-layer-borders", | 358 "composited-layer-borders", |
| 366 IDS_FLAGS_COMPOSITED_LAYER_BORDERS, | 359 IDS_FLAGS_COMPOSITED_LAYER_BORDERS, |
| 367 IDS_FLAGS_COMPOSITED_LAYER_BORDERS_DESCRIPTION, | 360 IDS_FLAGS_COMPOSITED_LAYER_BORDERS_DESCRIPTION, |
| (...skipping 1387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1755 } | 1748 } |
| 1756 | 1749 |
| 1757 const Experiment* GetExperiments(size_t* count) { | 1750 const Experiment* GetExperiments(size_t* count) { |
| 1758 *count = num_experiments; | 1751 *count = num_experiments; |
| 1759 return experiments; | 1752 return experiments; |
| 1760 } | 1753 } |
| 1761 | 1754 |
| 1762 } // namespace testing | 1755 } // namespace testing |
| 1763 | 1756 |
| 1764 } // namespace about_flags | 1757 } // namespace about_flags |
| OLD | NEW |