| 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 fcbc0fe0eb1239be30357a65e22d3ea89370264c..36e281e41c4f9ddcf50076b77247d6e251440975 100644
|
| --- a/third_party/WebKit/Source/core/workers/WorkerInspectorProxy.h
|
| +++ b/third_party/WebKit/Source/core/workers/WorkerInspectorProxy.h
|
| @@ -19,10 +19,9 @@ class WorkerGlobalScopeProxy;
|
|
|
| // 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();
|
| @@ -49,14 +48,14 @@ public:
|
| Document* getDocument() { return m_document; }
|
| const String& inspectorId();
|
|
|
| - using WorkerInspectorProxySet = WillBePersistentHeapHashSet<RawPtrWillBeWeakMember<WorkerInspectorProxy>>;
|
| + using WorkerInspectorProxySet = PersistentHeapHashSet<WeakMember<WorkerInspectorProxy>>;
|
| static const WorkerInspectorProxySet& allProxies();
|
|
|
| private:
|
| WorkerInspectorProxy();
|
|
|
| WorkerThread* m_workerThread;
|
| - RawPtrWillBeMember<Document> m_document;
|
| + Member<Document> m_document;
|
| PageInspector* m_pageInspector;
|
| String m_url;
|
| String m_inspectorId;
|
|
|