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

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, 10 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 c9090262209c9941996ebeb91bb2b5c803ef4d1b..e85fd7a7fbc86ddc7d5a770dca4960a8fcee5e9e 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;
@@ -56,7 +56,7 @@ public:
void advanceFocus(WebFocusType, LocalFrame* source);
- void setView(PassRefPtrWillBeRawPtr<RemoteFrameView>);
+ void setView(RawPtr<RemoteFrameView>);
void createView();
RemoteFrameView* view() const;
@@ -69,10 +69,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;
};

Powered by Google App Engine
This is Rietveld 408576698