| Index: Source/core/inspector/WorkerConsoleAgent.h
|
| diff --git a/Source/core/inspector/WorkerConsoleAgent.h b/Source/core/inspector/WorkerConsoleAgent.h
|
| index 1306ab511dc77bde36aec9fef730f4a33fe772c5..a17b33a2fdd4db5b28f75462c638a6fb8f1efc8f 100644
|
| --- a/Source/core/inspector/WorkerConsoleAgent.h
|
| +++ b/Source/core/inspector/WorkerConsoleAgent.h
|
| @@ -46,6 +46,7 @@ public:
|
| return adoptPtrWillBeNoop(new WorkerConsoleAgent(timelineAgent, injectedScriptManager, workerGlobalScope));
|
| }
|
| virtual ~WorkerConsoleAgent();
|
| + virtual void trace(Visitor*) override;
|
|
|
| virtual bool isWorkerAgent() override { return true; }
|
|
|
| @@ -59,7 +60,7 @@ private:
|
| WorkerConsoleAgent(InspectorTimelineAgent*, InjectedScriptManager*, WorkerGlobalScope*);
|
| virtual void addInspectedNode(ErrorString*, int nodeId) override;
|
|
|
| - WorkerGlobalScope* m_workerGlobalScope;
|
| + RawPtrWillBeMember<WorkerGlobalScope> m_workerGlobalScope;
|
| };
|
|
|
| } // namespace blink
|
|
|