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

Unified Diff: third_party/WebKit/Source/web/WebRemoteFrameImpl.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/web/WebRemoteFrameImpl.h
diff --git a/third_party/WebKit/Source/web/WebRemoteFrameImpl.h b/third_party/WebKit/Source/web/WebRemoteFrameImpl.h
index ca92892ba210838de998961313897fb57d81cc68..91d83f9732c33ef3aff7e46a9d53475889942bc9 100644
--- a/third_party/WebKit/Source/web/WebRemoteFrameImpl.h
+++ b/third_party/WebKit/Source/web/WebRemoteFrameImpl.h
@@ -152,7 +152,7 @@ public:
void initializeCoreFrame(FrameHost*, FrameOwner*, const AtomicString& name, const AtomicString& fallbackName) override;
RemoteFrame* frame() const override { return m_frame.get(); }
- void setCoreFrame(PassRefPtrWillBeRawPtr<RemoteFrame>);
+ void setCoreFrame(RawPtr<RemoteFrame>);
WebRemoteFrameClient* client() const { return m_client; }
@@ -182,11 +182,11 @@ public:
private:
WebRemoteFrameImpl(WebTreeScopeType, WebRemoteFrameClient*);
- OwnPtrWillBeMember<RemoteFrameClientImpl> m_frameClient;
- RefPtrWillBeMember<RemoteFrame> m_frame;
+ Member<RemoteFrameClientImpl> m_frameClient;
+ Member<RemoteFrame> m_frame;
WebRemoteFrameClient* m_client;
- WillBeHeapHashMap<WebFrame*, OwnPtrWillBeMember<FrameOwner>> m_ownersForChildren;
+ HeapHashMap<WebFrame*, Member<FrameOwner>> m_ownersForChildren;
#if ENABLE(OILPAN)
// Oilpan: WebRemoteFrameImpl must remain alive until close() is called.

Powered by Google App Engine
This is Rietveld 408576698