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

Unified Diff: third_party/WebKit/Source/core/paint/FloatClipRecorder.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/FloatClipRecorder.h
diff --git a/third_party/WebKit/Source/core/paint/FloatClipRecorder.h b/third_party/WebKit/Source/core/paint/FloatClipRecorder.h
index 2254aba838d4bf0882963d2c04fd7192de7c2beb..b6122a87161ba8093bf44da9902e99114a54ebe0 100644
--- a/third_party/WebKit/Source/core/paint/FloatClipRecorder.h
+++ b/third_party/WebKit/Source/core/paint/FloatClipRecorder.h
@@ -17,13 +17,13 @@ class FloatClipRecorder {
USING_FAST_MALLOC(FloatClipRecorder);
WTF_MAKE_NONCOPYABLE(FloatClipRecorder);
public:
- FloatClipRecorder(GraphicsContext&, const DisplayItemClientWrapper&, PaintPhase, const FloatRect&);
+ FloatClipRecorder(GraphicsContext&, const DisplayItemClient&, PaintPhase, const FloatRect&);
~FloatClipRecorder();
private:
GraphicsContext& m_context;
- DisplayItemClientWrapper m_client;
+ const DisplayItemClient& m_client;
DisplayItem::Type m_clipType;
};

Powered by Google App Engine
This is Rietveld 408576698