| Index: third_party/WebKit/Source/core/workers/WorkerInspectorProxy.h
|
| diff --git a/third_party/WebKit/Source/core/workers/WorkerInspectorProxy.h b/third_party/WebKit/Source/core/workers/WorkerInspectorProxy.h
|
| index a86a431b11feade1820efad9a32d926d41759808..c1a45ac3e09d34ec9a26f4d65dc65ec03e5f879f 100644
|
| --- a/third_party/WebKit/Source/core/workers/WorkerInspectorProxy.h
|
| +++ b/third_party/WebKit/Source/core/workers/WorkerInspectorProxy.h
|
| @@ -20,15 +20,14 @@ class WorkerThread;
|
|
|
| // A proxy for talking to the worker inspector on the worker thread.
|
| // All of these methods should be called on the main thread.
|
| -class CORE_EXPORT WorkerInspectorProxy final : public NoBaseWillBeGarbageCollectedFinalized<WorkerInspectorProxy> {
|
| - USING_FAST_MALLOC_WILL_BE_REMOVED(WorkerInspectorProxy);
|
| +class CORE_EXPORT WorkerInspectorProxy final : public GarbageCollectedFinalized<WorkerInspectorProxy> {
|
| public:
|
| - static PassOwnPtrWillBeRawPtr<WorkerInspectorProxy> create();
|
| + static RawPtr<WorkerInspectorProxy> create();
|
|
|
| ~WorkerInspectorProxy();
|
| DECLARE_TRACE();
|
|
|
| - class PageInspector : public NoBaseWillBeGarbageCollectedFinalized<PageInspector> {
|
| + class PageInspector : public GarbageCollectedFinalized<PageInspector> {
|
| public:
|
| virtual ~PageInspector() { }
|
| virtual void dispatchMessageFromWorker(const String&) = 0;
|
| @@ -55,8 +54,8 @@ private:
|
| void addDebuggerTaskForWorker(const WebTraceLocation&, PassOwnPtr<WebTaskRunner::Task>);
|
|
|
| WorkerThread* m_workerThread;
|
| - RawPtrWillBeMember<ExecutionContext> m_executionContext;
|
| - RawPtrWillBeMember<WorkerInspectorProxy::PageInspector> m_pageInspector;
|
| + Member<ExecutionContext> m_executionContext;
|
| + Member<WorkerInspectorProxy::PageInspector> m_pageInspector;
|
| WorkerGlobalScopeProxy* m_workerGlobalScopeProxy;
|
| };
|
|
|
|
|