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

Unified Diff: third_party/WebKit/Source/platform/graphics/paint/TransformDisplayItem.cpp

Issue 2894093002: Don't access DisplayItemClient::VisualRect() for cached display items. (Closed)
Patch Set: - Created 3 years, 7 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
« no previous file with comments | « third_party/WebKit/Source/platform/graphics/paint/TransformDisplayItem.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/graphics/paint/TransformDisplayItem.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/paint/TransformDisplayItem.cpp b/third_party/WebKit/Source/platform/graphics/paint/TransformDisplayItem.cpp
index 35f174e2685a22b0d524ffad71b895e4346ee534..c839a3ab452d3ebe31281a648efa125b820ef5cd 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/TransformDisplayItem.cpp
+++ b/third_party/WebKit/Source/platform/graphics/paint/TransformDisplayItem.cpp
@@ -16,7 +16,7 @@ void BeginTransformDisplayItem::Replay(GraphicsContext& context) const {
}
void BeginTransformDisplayItem::AppendToWebDisplayItemList(
- const IntRect& visual_rect,
+ const LayoutSize&,
WebDisplayItemList* list) const {
list->AppendTransformItem(AffineTransformToSkMatrix(transform_));
}
@@ -36,7 +36,7 @@ void EndTransformDisplayItem::Replay(GraphicsContext& context) const {
}
void EndTransformDisplayItem::AppendToWebDisplayItemList(
- const IntRect& visual_rect,
+ const LayoutSize&,
WebDisplayItemList* list) const {
list->AppendEndTransformItem();
}
« no previous file with comments | « third_party/WebKit/Source/platform/graphics/paint/TransformDisplayItem.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698