| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #ifndef RuntimeEnabledFeaturesTestHelpers_h | 5 #ifndef RuntimeEnabledFeaturesTestHelpers_h |
| 6 #define RuntimeEnabledFeaturesTestHelpers_h | 6 #define RuntimeEnabledFeaturesTestHelpers_h |
| 7 | 7 |
| 8 #include "platform/RuntimeEnabledFeatures.h" | 8 #include "platform/RuntimeEnabledFeatures.h" |
| 9 #include "platform/wtf/Assertions.h" | 9 #include "platform/wtf/Assertions.h" |
| 10 | 10 |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 RuntimeEnabledFeatures::setSlimmingPaintV2Enabled> | 49 RuntimeEnabledFeatures::setSlimmingPaintV2Enabled> |
| 50 ScopedSlimmingPaintV2ForTest; | 50 ScopedSlimmingPaintV2ForTest; |
| 51 typedef ScopedRuntimeEnabledFeatureForTest< | 51 typedef ScopedRuntimeEnabledFeatureForTest< |
| 52 RuntimeEnabledFeatures::slimmingPaintInvalidationEnabled, | 52 RuntimeEnabledFeatures::slimmingPaintInvalidationEnabled, |
| 53 RuntimeEnabledFeatures::setSlimmingPaintInvalidationEnabled> | 53 RuntimeEnabledFeatures::setSlimmingPaintInvalidationEnabled> |
| 54 ScopedSlimmingPaintInvalidationForTest; | 54 ScopedSlimmingPaintInvalidationForTest; |
| 55 typedef ScopedRuntimeEnabledFeatureForTest< | 55 typedef ScopedRuntimeEnabledFeatureForTest< |
| 56 RuntimeEnabledFeatures::paintUnderInvalidationCheckingEnabled, | 56 RuntimeEnabledFeatures::paintUnderInvalidationCheckingEnabled, |
| 57 RuntimeEnabledFeatures::setPaintUnderInvalidationCheckingEnabled> | 57 RuntimeEnabledFeatures::setPaintUnderInvalidationCheckingEnabled> |
| 58 ScopedPaintUnderInvalidationCheckingForTest; | 58 ScopedPaintUnderInvalidationCheckingForTest; |
| 59 typedef ScopedRuntimeEnabledFeatureForTest< |
| 60 RuntimeEnabledFeatures::accessibilityObjectModelEnabled, |
| 61 RuntimeEnabledFeatures::setAccessibilityObjectModelEnabled> |
| 62 ScopedAccessibilityObjectModelForTest; |
| 59 | 63 |
| 60 } // namespace blink | 64 } // namespace blink |
| 61 | 65 |
| 62 #endif // RuntimeEnabledFeaturesTestHelpers_h | 66 #endif // RuntimeEnabledFeaturesTestHelpers_h |
| OLD | NEW |