Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(830)

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.h

Issue 1859293002: [DevTools] Move Console to v8_inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698