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

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

Issue 1394313002: Make DisplayItem::replay const. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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 50da105acc9a893fa2b2866786534d649f77dcd8..8ebd21fff0b7148c15c2ec0d73f9ef2dee906a9b 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/TransformDisplayItem.cpp
+++ b/third_party/WebKit/Source/platform/graphics/paint/TransformDisplayItem.cpp
@@ -11,7 +11,7 @@
namespace blink {
-void BeginTransformDisplayItem::replay(GraphicsContext& context)
+void BeginTransformDisplayItem::replay(GraphicsContext& context) const
{
context.save();
context.concatCTM(m_transform);
@@ -31,7 +31,7 @@ void BeginTransformDisplayItem::dumpPropertiesAsDebugString(WTF::StringBuilder&
}
#endif
-void EndTransformDisplayItem::replay(GraphicsContext& context)
+void EndTransformDisplayItem::replay(GraphicsContext& context) const
{
context.restore();
}
« 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