Index: third_party/WebKit/Source/core/inspector/InspectorSession.h |
diff --git a/third_party/WebKit/Source/core/inspector/InspectorSession.h b/third_party/WebKit/Source/core/inspector/InspectorSession.h |
index f21be42bdacfbd4dba1faaff258861eb28007cbc..120a4edb330cc1678607bc5e7b68b002cdcddec5 100644 |
--- a/third_party/WebKit/Source/core/inspector/InspectorSession.h |
+++ b/third_party/WebKit/Source/core/inspector/InspectorSession.h |
@@ -35,8 +35,6 @@ public: |
public: |
virtual void sendProtocolMessage(int sessionId, int callId, const String& response, const String& state) = 0; |
virtual void resumeStartup() { } |
- virtual void profilingStarted() { } |
- virtual void profilingStopped() { } |
virtual ~Client() {} |
}; |
@@ -62,8 +60,6 @@ private: |
// V8InspectorSessionClient implementation. |
void resumeStartup() override; |
bool canExecuteScripts() override; |
- void profilingStarted() override; |
- void profilingStopped() override; |
Client* m_client; |
std::unique_ptr<V8InspectorSession> m_v8Session; |