summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/platform/graphics/GraphicsLayerClient.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/platform/graphics/GraphicsLayerClient.h')
-rw-r--r--chromium/third_party/WebKit/Source/platform/graphics/GraphicsLayerClient.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/chromium/third_party/WebKit/Source/platform/graphics/GraphicsLayerClient.h b/chromium/third_party/WebKit/Source/platform/graphics/GraphicsLayerClient.h
index f46e3020c8b..aec703d0a7a 100644
--- a/chromium/third_party/WebKit/Source/platform/graphics/GraphicsLayerClient.h
+++ b/chromium/third_party/WebKit/Source/platform/graphics/GraphicsLayerClient.h
@@ -64,15 +64,9 @@ public:
virtual ~GraphicsLayerClient() {}
// Callback for when hardware-accelerated animation started.
- virtual void notifyAnimationStarted(const GraphicsLayer*, double wallClockTime, double monotonicTime) = 0;
+ virtual void notifyAnimationStarted(const GraphicsLayer*, double monotonicTime) = 0;
virtual void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsLayerPaintingPhase, const IntRect& inClip) = 0;
- virtual void didCommitChangesForLayer(const GraphicsLayer*) const { }
-
- // Provides current transform (taking transform-origin and animations into account). Input matrix has been
- // initialized to identity already. Returns false if the layer has no transform.
- virtual bool getCurrentTransform(const GraphicsLayer*, TransformationMatrix&) const { return false; }
-
virtual bool isTrackingRepaints() const { return false; }
virtual String debugName(const GraphicsLayer*) = 0;