| Index: third_party/WebKit/Source/core/inspector/WorkerThreadDebugger.h
|
| diff --git a/third_party/WebKit/Source/core/inspector/WorkerThreadDebugger.h b/third_party/WebKit/Source/core/inspector/WorkerThreadDebugger.h
|
| index 918bd14d1d731b2fafed1e03112a74efd08d407f..94d0a3485101cd0eccf7c25da056ac2186d7a9fe 100644
|
| --- a/third_party/WebKit/Source/core/inspector/WorkerThreadDebugger.h
|
| +++ b/third_party/WebKit/Source/core/inspector/WorkerThreadDebugger.h
|
| @@ -58,6 +58,11 @@ public:
|
| void unmuteConsole() override { };
|
| bool callingContextCanAccessContext(v8::Local<v8::Context> calling, v8::Local<v8::Context> target) override;
|
|
|
| + bool hasMemoryOnConsole(v8::Local<v8::Context>) override { return false; }
|
| + v8::MaybeLocal<v8::Value> memoryInfo(v8::Isolate*, v8::Local<v8::Context>, v8::Local<v8::Object> creationContext) override { return v8::MaybeLocal<v8::Value>(); }
|
| +protected:
|
| + void reportMessageToConsole(v8::Local<v8::Context>, ConsoleMessage*);
|
| +
|
| private:
|
| WorkerThread* m_workerThread;
|
| };
|
|
|