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

Unified Diff: third_party/WebKit/Source/core/paint/TransformRecorder.h

Issue 1497873002: Make DisplayItemClient an interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years 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: third_party/WebKit/Source/core/paint/TransformRecorder.h
diff --git a/third_party/WebKit/Source/core/paint/TransformRecorder.h b/third_party/WebKit/Source/core/paint/TransformRecorder.h
index e0e91e10e09df8e7140776278a42aab398fa95db..4ad228bfae8b9bea3a0d8fd3c4308c32bfd93265 100644
--- a/third_party/WebKit/Source/core/paint/TransformRecorder.h
+++ b/third_party/WebKit/Source/core/paint/TransformRecorder.h
@@ -17,12 +17,12 @@ class AffineTransform;
class CORE_EXPORT TransformRecorder {
STACK_ALLOCATED();
public:
- TransformRecorder(GraphicsContext&, const DisplayItemClientWrapper&, const AffineTransform&);
+ TransformRecorder(GraphicsContext&, const DisplayItemClient&, const AffineTransform&);
~TransformRecorder();
private:
GraphicsContext& m_context;
- DisplayItemClientWrapper m_client;
+ const DisplayItemClient& m_client;
bool m_skipRecordingForIdentityTransform;
};

Powered by Google App Engine
This is Rietveld 408576698