| 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 558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 569 #if defined(OS_ANDROID) | 569 #if defined(OS_ANDROID) |
| 570 { | 570 { |
| 571 "disable-webaudio", | 571 "disable-webaudio", |
| 572 IDS_FLAGS_DISABLE_WEBAUDIO_NAME, | 572 IDS_FLAGS_DISABLE_WEBAUDIO_NAME, |
| 573 IDS_FLAGS_DISABLE_WEBAUDIO_DESCRIPTION, | 573 IDS_FLAGS_DISABLE_WEBAUDIO_DESCRIPTION, |
| 574 kOsAndroid, | 574 kOsAndroid, |
| 575 SINGLE_VALUE_TYPE(switches::kDisableWebAudio) | 575 SINGLE_VALUE_TYPE(switches::kDisableWebAudio) |
| 576 }, | 576 }, |
| 577 #endif | 577 #endif |
| 578 { | 578 { |
| 579 "fixed-position-creates-stacking-context", | |
| 580 IDS_FLAGS_FIXED_POSITION_CREATES_STACKING_CONTEXT_NAME, | |
| 581 IDS_FLAGS_FIXED_POSITION_CREATES_STACKING_CONTEXT_DESCRIPTION, | |
| 582 kOsAll, | |
| 583 ENABLE_DISABLE_VALUE_TYPE( | |
| 584 switches::kEnableFixedPositionCreatesStackingContext, | |
| 585 switches::kDisableFixedPositionCreatesStackingContext) | |
| 586 }, | |
| 587 { | |
| 588 "enable-compositing-for-fixed-position", | 579 "enable-compositing-for-fixed-position", |
| 589 IDS_FLAGS_COMPOSITING_FOR_FIXED_POSITION_NAME, | 580 IDS_FLAGS_COMPOSITING_FOR_FIXED_POSITION_NAME, |
| 590 IDS_FLAGS_COMPOSITING_FOR_FIXED_POSITION_DESCRIPTION, | 581 IDS_FLAGS_COMPOSITING_FOR_FIXED_POSITION_DESCRIPTION, |
| 591 kOsAll, | 582 kOsAll, |
| 592 MULTI_VALUE_TYPE(kEnableCompositingForFixedPositionChoices) | 583 MULTI_VALUE_TYPE(kEnableCompositingForFixedPositionChoices) |
| 593 }, | 584 }, |
| 594 { | 585 { |
| 595 "enable-compositing-for-transition", | 586 "enable-compositing-for-transition", |
| 596 IDS_FLAGS_COMPOSITING_FOR_TRANSITION_NAME, | 587 IDS_FLAGS_COMPOSITING_FOR_TRANSITION_NAME, |
| 597 IDS_FLAGS_COMPOSITING_FOR_TRANSITION_DESCRIPTION, | 588 IDS_FLAGS_COMPOSITING_FOR_TRANSITION_DESCRIPTION, |
| (...skipping 1764 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2362 } | 2353 } |
| 2363 | 2354 |
| 2364 const Experiment* GetExperiments(size_t* count) { | 2355 const Experiment* GetExperiments(size_t* count) { |
| 2365 *count = num_experiments; | 2356 *count = num_experiments; |
| 2366 return experiments; | 2357 return experiments; |
| 2367 } | 2358 } |
| 2368 | 2359 |
| 2369 } // namespace testing | 2360 } // namespace testing |
| 2370 | 2361 |
| 2371 } // namespace about_flags | 2362 } // namespace about_flags |
| OLD | NEW |