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

Unified Diff: third_party/WebKit/Source/core/frame/RemoteFrame.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/RemoteFrame.h
diff --git a/third_party/WebKit/Source/core/frame/RemoteFrame.h b/third_party/WebKit/Source/core/frame/RemoteFrame.h
index f7d23fbb00ad96f1034254aef35000fb708b042f..994a1745e166a36d877f1cae08328ed6e3dbb75a 100644
--- a/third_party/WebKit/Source/core/frame/RemoteFrame.h
+++ b/third_party/WebKit/Source/core/frame/RemoteFrame.h
@@ -24,7 +24,7 @@ struct FrameLoadRequest;
class CORE_EXPORT RemoteFrame: public Frame {
public:
- static PassRefPtrWillBeRawPtr<RemoteFrame> create(RemoteFrameClient*, FrameHost*, FrameOwner*);
+ static RawPtr<RemoteFrame> create(RemoteFrameClient*, FrameHost*, FrameOwner*);
~RemoteFrame() override;
@@ -55,7 +55,7 @@ public:
void advanceFocus(WebFocusType, LocalFrame* source);
- void setView(PassRefPtrWillBeRawPtr<RemoteFrameView>);
+ void setView(RawPtr<RemoteFrameView>);
void createView();
RemoteFrameView* view() const;
@@ -68,10 +68,10 @@ private:
RemoteFrameClient* remoteFrameClient() const;
- RefPtrWillBeMember<RemoteFrameView> m_view;
- RefPtrWillBeMember<RemoteSecurityContext> m_securityContext;
- RefPtrWillBeMember<RemoteDOMWindow> m_domWindow;
- OwnPtrWillBeMember<WindowProxyManager> m_windowProxyManager;
+ Member<RemoteFrameView> m_view;
+ Member<RemoteSecurityContext> m_securityContext;
+ Member<RemoteDOMWindow> m_domWindow;
+ Member<WindowProxyManager> m_windowProxyManager;
WebLayer* m_remotePlatformLayer;
};
« no previous file with comments | « third_party/WebKit/Source/core/frame/RemoteDOMWindow.cpp ('k') | third_party/WebKit/Source/core/frame/RemoteFrame.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698