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

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, 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/WebSharedWorkerImpl.h
diff --git a/third_party/WebKit/Source/web/WebSharedWorkerImpl.h b/third_party/WebKit/Source/web/WebSharedWorkerImpl.h
index 76648cb681153ea2b4b16becba2303ea3b105e9b..ea3547e3f13a5d75f4092bbf67913709d92d4e2b 100644
--- a/third_party/WebKit/Source/web/WebSharedWorkerImpl.h
+++ b/third_party/WebKit/Source/web/WebSharedWorkerImpl.h
@@ -76,7 +76,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;
RefPtr<WorkerThread> m_workerThread;

Powered by Google App Engine
This is Rietveld 408576698