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

Unified Diff: third_party/WebKit/Source/core/frame/RemoteFrameView.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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: third_party/WebKit/Source/core/frame/RemoteFrameView.h
diff --git a/third_party/WebKit/Source/core/frame/RemoteFrameView.h b/third_party/WebKit/Source/core/frame/RemoteFrameView.h
index 70e71485dba236c5d0e2ab769ef6b188dd4dbc14..21548333f954a8a2e2b55e7ebce0f053dda83792 100644
--- a/third_party/WebKit/Source/core/frame/RemoteFrameView.h
+++ b/third_party/WebKit/Source/core/frame/RemoteFrameView.h
@@ -15,7 +15,7 @@ class RemoteFrame;
class RemoteFrameView final : public Widget {
public:
- static PassRefPtrWillBeRawPtr<RemoteFrameView> create(RemoteFrame*);
+ static RawPtr<RemoteFrameView> create(RemoteFrame*);
~RemoteFrameView() override;
@@ -49,7 +49,7 @@ private:
// and its RemoteFrameView corresponds to that between LocalFrame
// and FrameView. Please see the FrameView::m_frame comment for
// details.
- RefPtrWillBeMember<RemoteFrame> m_remoteFrame;
+ Member<RemoteFrame> m_remoteFrame;
};
DEFINE_TYPE_CASTS(RemoteFrameView, Widget, widget, widget->isRemoteFrameView(), widget.isRemoteFrameView());
« no previous file with comments | « third_party/WebKit/Source/core/frame/RemoteFrame.cpp ('k') | third_party/WebKit/Source/core/frame/RemoteFrameView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698