| 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;
|
|
|
|
|