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

Unified Diff: third_party/WebKit/Source/web/WebDevToolsFrontendImpl.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/WebDevToolsFrontendImpl.h
diff --git a/third_party/WebKit/Source/web/WebDevToolsFrontendImpl.h b/third_party/WebKit/Source/web/WebDevToolsFrontendImpl.h
index 4d9e770fe38131c585ff0d5de25806b67f344769..4f7ab6e49272214f147ce1a4333545cc239d5813 100644
--- a/third_party/WebKit/Source/web/WebDevToolsFrontendImpl.h
+++ b/third_party/WebKit/Source/web/WebDevToolsFrontendImpl.h
@@ -55,14 +55,14 @@ public:
bool isUnderTest() override;
- void showContextMenu(LocalFrame*, float x, float y, PassRefPtrWillBeRawPtr<ContextMenuProvider>) override;
+ void showContextMenu(LocalFrame*, float x, float y, RawPtr<ContextMenuProvider>) override;
void setInjectedScriptForOrigin(const String& origin, const String& source) override;
private:
- RefPtrWillBePersistent<WebLocalFrameImpl> m_webFrame;
+ Persistent<WebLocalFrameImpl> m_webFrame;
WebDevToolsFrontendClient* m_client;
- RefPtrWillBePersistent<DevToolsHost> m_devtoolsHost;
+ Persistent<DevToolsHost> m_devtoolsHost;
typedef HashMap<String, String> InjectedScriptForOriginMap;
InjectedScriptForOriginMap m_injectedScriptForOrigin;
};
« no previous file with comments | « third_party/WebKit/Source/web/WebDevToolsAgentImpl.cpp ('k') | third_party/WebKit/Source/web/WebDevToolsFrontendImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698