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

Unified Diff: third_party/WebKit/Source/web/WebLocalFrameImpl.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/web/WebLocalFrameImpl.h
diff --git a/third_party/WebKit/Source/web/WebLocalFrameImpl.h b/third_party/WebKit/Source/web/WebLocalFrameImpl.h
index a1368f5fbe41e419dc1921d4cf2bae2cdb839dfc..f9ff7bdb62b6e69b72a789ae7d0264d9b789e438 100644
--- a/third_party/WebKit/Source/web/WebLocalFrameImpl.h
+++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.h
@@ -265,7 +265,7 @@ public:
static WebLocalFrameImpl* createProvisional(WebFrameClient*, WebRemoteFrame*, WebSandboxFlags, const WebFrameOwnerProperties&);
~WebLocalFrameImpl() override;
- PassRefPtrWillBeRawPtr<LocalFrame> createChildFrame(const FrameLoadRequest&, const AtomicString& name, HTMLFrameOwnerElement*);
+ RawPtr<LocalFrame> createChildFrame(const FrameLoadRequest&, const AtomicString& name, HTMLFrameOwnerElement*);
void didChangeContentsSize(const IntSize&);
@@ -362,21 +362,21 @@ private:
WebRemoteFrame* toWebRemoteFrame() override;
// Sets the local core frame and registers destruction observers.
- void setCoreFrame(PassRefPtrWillBeRawPtr<LocalFrame>);
+ void setCoreFrame(RawPtr<LocalFrame>);
void loadJavaScriptURL(const KURL&);
WebPlugin* focusedPluginIfInputMethodSupported();
ScrollableArea* layoutViewportScrollableArea() const;
- OwnPtrWillBeMember<FrameLoaderClientImpl> m_frameLoaderClientImpl;
+ Member<FrameLoaderClientImpl> m_frameLoaderClientImpl;
// The embedder retains a reference to the WebCore LocalFrame while it is active in the DOM. This
// reference is released when the frame is removed from the DOM or the entire page is closed.
// FIXME: These will need to change to WebFrame when we introduce WebFrameProxy.
- RefPtrWillBeMember<LocalFrame> m_frame;
+ Member<LocalFrame> m_frame;
- OwnPtrWillBeMember<WebDevToolsAgentImpl> m_devToolsAgent;
+ Member<WebDevToolsAgentImpl> m_devToolsAgent;
// This is set if the frame is the root of a local frame tree, and requires a widget for layout.
WebFrameWidget* m_frameWidget;
@@ -387,11 +387,11 @@ private:
OwnPtr<SharedWorkerRepositoryClientImpl> m_sharedWorkerRepositoryClient;
// Will be initialized after first call to find() or scopeStringMatches().
- OwnPtrWillBeMember<TextFinder> m_textFinder;
+ Member<TextFinder> m_textFinder;
// Valid between calls to BeginPrint() and EndPrint(). Containts the print
// information. Is used by PrintPage().
- OwnPtrWillBeMember<ChromePrintContext> m_printContext;
+ Member<ChromePrintContext> m_printContext;
// Stores the additional input events offset and scale when device metrics emulation is enabled.
IntSize m_inputEventsOffsetForEmulation;
@@ -399,7 +399,7 @@ private:
UserMediaClientImpl m_userMediaClientImpl;
- OwnPtrWillBeMember<GeolocationClientProxy> m_geolocationClientProxy;
+ Member<GeolocationClientProxy> m_geolocationClientProxy;
WebDevToolsFrontendImpl* m_webDevToolsFrontend;
« no previous file with comments | « third_party/WebKit/Source/web/WebLabelElement.cpp ('k') | third_party/WebKit/Source/web/WebLocalFrameImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698