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

Unified Diff: third_party/WebKit/Source/web/WebSharedWorkerImpl.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/WebSharedWorkerImpl.h
diff --git a/third_party/WebKit/Source/web/WebSharedWorkerImpl.h b/third_party/WebKit/Source/web/WebSharedWorkerImpl.h
index 20c16bb49fd0e510b55cc78b475fac1ec718f0cf..89c1ae036571ca799da71fa7d1cd676909702912 100644
--- a/third_party/WebKit/Source/web/WebSharedWorkerImpl.h
+++ b/third_party/WebKit/Source/web/WebSharedWorkerImpl.h
@@ -77,7 +77,7 @@ public:
// WorkerReportingProxy methods:
void reportException(
const WTF::String&, int, int, const WTF::String&, int) override;
- void reportConsoleMessage(PassRefPtrWillBeRawPtr<ConsoleMessage>) override;
+ void reportConsoleMessage(RawPtr<ConsoleMessage>) override;
void postMessageToPageInspector(const WTF::String&) override;
void postWorkerConsoleAgentEnabled() override { }
void didEvaluateWorkerScript(bool success) override { }
@@ -135,15 +135,15 @@ private:
bool postTaskToWorkerGlobalScope(PassOwnPtr<ExecutionContextTask>);
// 'shadow page' - created to proxy loading requests from the worker.
- RefPtrWillBePersistent<ExecutionContext> m_loadingDocument;
+ Persistent<ExecutionContext> m_loadingDocument;
WebView* m_webView;
- RefPtrWillBePersistent<WebLocalFrameImpl> m_mainFrame;
+ Persistent<WebLocalFrameImpl> m_mainFrame;
bool m_askedToTerminate;
// This one is bound to and used only on the main thread.
OwnPtr<WebServiceWorkerNetworkProvider> m_networkProvider;
- OwnPtrWillBePersistent<WorkerInspectorProxy> m_workerInspectorProxy;
+ Persistent<WorkerInspectorProxy> m_workerInspectorProxy;
OwnPtr<WorkerThread> m_workerThread;
« no previous file with comments | « third_party/WebKit/Source/web/WebSettingsImpl.h ('k') | third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698