| 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;
|
|
|
|
|