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

Unified Diff: Source/core/frame/LocalFrame.h

Issue 603193005: Move the Widget hierarchy to the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase upto and resolve r182737 conflict. Created 6 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
Index: Source/core/frame/LocalFrame.h
diff --git a/Source/core/frame/LocalFrame.h b/Source/core/frame/LocalFrame.h
index 3ffe2beab0b6b03365dcddd9758e906598a15c7c..b7fa98bfae76d9b2d4fd1710e505efac28dd0093 100644
--- a/Source/core/frame/LocalFrame.h
+++ b/Source/core/frame/LocalFrame.h
@@ -70,7 +70,7 @@ namespace blink {
virtual bool isLocalFrame() const OVERRIDE { return true; }
void init();
- void setView(PassRefPtr<FrameView>);
+ void setView(PassRefPtrWillBeRawPtr<FrameView>);
void createView(const IntSize&, const Color&, bool,
ScrollbarMode = ScrollbarAuto, bool horizontalLock = false,
ScrollbarMode = ScrollbarAuto, bool verticalLock = false);
@@ -168,7 +168,7 @@ namespace blink {
mutable FrameLoader m_loader;
mutable NavigationScheduler m_navigationScheduler;
- RefPtr<FrameView> m_view;
+ RefPtrWillBeMember<FrameView> m_view;
// Usually 0. Non-null if this is the top frame of PagePopup.
RefPtrWillBeMember<Element> m_pagePopupOwner;

Powered by Google App Engine
This is Rietveld 408576698