Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1788)

Unified Diff: Source/core/platform/graphics/transforms/InterpolatedTransformOperation.h

Issue 22900008: Make vw/vh units to work in css transforms. Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/platform/graphics/transforms/InterpolatedTransformOperation.h
diff --git a/Source/core/platform/graphics/transforms/InterpolatedTransformOperation.h b/Source/core/platform/graphics/transforms/InterpolatedTransformOperation.h
index 97ef8d5d08d2c579b281602d67bd7bca02bc3ddb..4279e166bff4a3b0e3d6ee3a015d0f0d95d125e7 100644
--- a/Source/core/platform/graphics/transforms/InterpolatedTransformOperation.h
+++ b/Source/core/platform/graphics/transforms/InterpolatedTransformOperation.h
@@ -51,9 +51,9 @@ private:
virtual bool isSameType(const TransformOperation& o) const { return o.getOperationType() == Interpolated; }
virtual bool operator==(const TransformOperation&) const;
- virtual bool apply(TransformationMatrix&, const FloatSize& borderBoxSize) const;
+ virtual bool apply(TransformationMatrix&, const FloatSize& borderBoxSize, RenderView*) const;
- virtual PassRefPtr<TransformOperation> blend(const TransformOperation* from, double progress, bool blendToIdentity = false);
+ virtual PassRefPtr<TransformOperation> blend(const TransformOperation* from, double progress, bool blendToIdentity = false, RenderView* =0);
InterpolatedTransformOperation(const TransformOperations& from, const TransformOperations& to, double progress)
: from(from)

Powered by Google App Engine
This is Rietveld 408576698