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

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

Issue 1370143007: Oilpan: fix build after r351868. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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 | « no previous file | third_party/WebKit/Source/core/paint/FramePainter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/paint/FramePainter.h
diff --git a/third_party/WebKit/Source/core/paint/FramePainter.h b/third_party/WebKit/Source/core/paint/FramePainter.h
index 6ef01b8052fe4032861998e8255a0091e20dd14e..f1b91f825f817d36f1c2de2f51ba98eb764f061f 100644
--- a/third_party/WebKit/Source/core/paint/FramePainter.h
+++ b/third_party/WebKit/Source/core/paint/FramePainter.h
@@ -19,7 +19,7 @@ class FramePainter {
STACK_ALLOCATED();
WTF_MAKE_NONCOPYABLE(FramePainter);
public:
- explicit FramePainter(const FrameView& frameView) : m_frameView(frameView) { }
+ explicit FramePainter(const FrameView& frameView) : m_frameView(&frameView) { }
void paint(GraphicsContext*, const GlobalPaintFlags, const IntRect&);
void paintScrollbars(GraphicsContext*, const IntRect&);
@@ -29,7 +29,9 @@ public:
private:
void paintScrollbar(GraphicsContext*, Scrollbar*, const IntRect&);
- const FrameView& m_frameView;
+ const FrameView& frameView();
+
+ RawPtrWillBeMember<const FrameView> m_frameView;
static bool s_inPaintContents;
};
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/paint/FramePainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698