| Index: third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.h
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.h b/third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.h
|
| index 4766a9d51f9c0bf2c09ff196b4068f64f296b444..612621b08b6b9f4a2f3929d6ed8b6b9a95791dfd 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.h
|
| @@ -25,6 +25,8 @@ public:
|
| explicit V8ProfilerAgentImpl(V8InspectorSessionImpl*);
|
| ~V8ProfilerAgentImpl() override;
|
|
|
| + bool enabled() const { return m_enabled; }
|
| +
|
| void setInspectorState(protocol::DictionaryValue* state) override { m_state = state; }
|
| void setFrontend(protocol::Frontend::Profiler* frontend) override { m_frontend = frontend; }
|
| void clearFrontend() override;
|
| @@ -36,8 +38,8 @@ public:
|
| void start(ErrorString*) override;
|
| void stop(ErrorString*, OwnPtr<protocol::Profiler::CPUProfile>*) override;
|
|
|
| - void consoleProfile(const String16& title) override;
|
| - void consoleProfileEnd(const String16& title) override;
|
| + void consoleProfile(const String16& title);
|
| + void consoleProfileEnd(const String16& title);
|
|
|
| void idleStarted() override;
|
| void idleFinished() override;
|
|
|