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

Unified Diff: third_party/WebKit/Source/platform/graphics/paint/ClipPathRecorder.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/platform/graphics/paint/ClipPathRecorder.h
diff --git a/third_party/WebKit/Source/platform/graphics/paint/ClipPathRecorder.h b/third_party/WebKit/Source/platform/graphics/paint/ClipPathRecorder.h
index 98e6a24d89d57e36f94d02841cdaa927e7018346..d9929c8d9d6846c69dc70d430b8042c4575d4a65 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/ClipPathRecorder.h
+++ b/third_party/WebKit/Source/platform/graphics/paint/ClipPathRecorder.h
@@ -18,12 +18,12 @@ class PLATFORM_EXPORT ClipPathRecorder {
USING_FAST_MALLOC(ClipPathRecorder);
WTF_MAKE_NONCOPYABLE(ClipPathRecorder);
public:
- ClipPathRecorder(GraphicsContext&, const DisplayItemClientWrapper&, const Path&);
+ ClipPathRecorder(GraphicsContext&, const DisplayItemClient&, const Path&);
~ClipPathRecorder();
private:
GraphicsContext& m_context;
- DisplayItemClientWrapper m_client;
+ const DisplayItemClient& m_client;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698