| Index: cc/test/layer_tree_test.h
|
| diff --git a/cc/test/layer_tree_test.h b/cc/test/layer_tree_test.h
|
| index 36f37ef4c599cdb8e8c5ccb2c7ccc7697830de18..af0c554c39354c764f4cc738df5d7b70322192f4 100644
|
| --- a/cc/test/layer_tree_test.h
|
| +++ b/cc/test/layer_tree_test.h
|
| @@ -92,10 +92,10 @@ class TestHooks : public AnimationDelegate {
|
| // Implementation of AnimationDelegate:
|
| virtual void NotifyAnimationStarted(base::TimeTicks monotonic_time,
|
| Animation::TargetProperty target_property)
|
| - OVERRIDE {}
|
| + override {}
|
| virtual void NotifyAnimationFinished(
|
| base::TimeTicks monotonic_time,
|
| - Animation::TargetProperty target_property) OVERRIDE {}
|
| + Animation::TargetProperty target_property) override {}
|
|
|
| virtual void RequestNewOutputSurface(bool fallback) = 0;
|
| };
|
| @@ -187,7 +187,7 @@ class LayerTreeTest : public testing::Test, public TestHooks {
|
| void DestroyLayerTreeHost();
|
|
|
| // By default, output surface recreation is synchronous.
|
| - virtual void RequestNewOutputSurface(bool fallback) OVERRIDE;
|
| + virtual void RequestNewOutputSurface(bool fallback) override;
|
| // Override this for pixel tests, where you need a real output surface.
|
| virtual scoped_ptr<OutputSurface> CreateOutputSurface(bool fallback);
|
| // Override this for unit tests, which should not produce pixel output.
|
|
|