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

Unified Diff: Source/core/platform/graphics/transforms/IdentityTransformOperation.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/IdentityTransformOperation.h
diff --git a/Source/core/platform/graphics/transforms/IdentityTransformOperation.h b/Source/core/platform/graphics/transforms/IdentityTransformOperation.h
index 3f70d9acdd6a88b4f898c81a64ca98facc8c54a5..ba7a497fe8d996a47459937b36d3b64aa99ae35d 100644
--- a/Source/core/platform/graphics/transforms/IdentityTransformOperation.h
+++ b/Source/core/platform/graphics/transforms/IdentityTransformOperation.h
@@ -46,12 +46,12 @@ private:
return isSameType(o);
}
- virtual bool apply(TransformationMatrix&, const FloatSize&) const
+ virtual bool apply(TransformationMatrix&, const FloatSize&, RenderView*) const
{
return false;
}
- virtual PassRefPtr<TransformOperation> blend(const TransformOperation*, double, bool = false)
+ virtual PassRefPtr<TransformOperation> blend(const TransformOperation*, double, bool = false, RenderView* =0)
{
return this;
}

Powered by Google App Engine
This is Rietveld 408576698