| Index: Source/platform/graphics/GraphicsLayer.h
|
| diff --git a/Source/platform/graphics/GraphicsLayer.h b/Source/platform/graphics/GraphicsLayer.h
|
| index 96470b50ed4b6e7f65c6d5bd81a819047812b9b9..dfd83a4927b1ee539cc004bffd93740693e56d0d 100644
|
| --- a/Source/platform/graphics/GraphicsLayer.h
|
| +++ b/Source/platform/graphics/GraphicsLayer.h
|
| @@ -87,7 +87,7 @@ public:
|
| GraphicsLayerClient* client() const { return m_client; }
|
|
|
| // WebLayerClient implementation.
|
| - virtual WebGraphicsLayerDebugInfo* takeDebugInfoFor(WebLayer*) OVERRIDE;
|
| + virtual WebGraphicsLayerDebugInfo* takeDebugInfoFor(WebLayer*) override;
|
|
|
| GraphicsLayerDebugInfo& debugInfo();
|
|
|
| @@ -232,14 +232,14 @@ public:
|
| static void unregisterContentsLayer(WebLayer*);
|
|
|
| // GraphicsContextPainter implementation.
|
| - virtual void paint(GraphicsContext&, const IntRect& clip) OVERRIDE;
|
| + virtual void paint(GraphicsContext&, const IntRect& clip) override;
|
|
|
| // WebCompositorAnimationDelegate implementation.
|
| - virtual void notifyAnimationStarted(double monotonicTime, WebCompositorAnimation::TargetProperty) OVERRIDE;
|
| - virtual void notifyAnimationFinished(double monotonicTime, WebCompositorAnimation::TargetProperty) OVERRIDE;
|
| + virtual void notifyAnimationStarted(double monotonicTime, WebCompositorAnimation::TargetProperty) override;
|
| + virtual void notifyAnimationFinished(double monotonicTime, WebCompositorAnimation::TargetProperty) override;
|
|
|
| // WebLayerScrollClient implementation.
|
| - virtual void didScroll() OVERRIDE;
|
| + virtual void didScroll() override;
|
|
|
| protected:
|
| String debugName(WebLayer*) const;
|
|
|