| Index: third_party/WebKit/Source/web/WebDevToolsAgentImpl.h | 
| diff --git a/third_party/WebKit/Source/web/WebDevToolsAgentImpl.h b/third_party/WebKit/Source/web/WebDevToolsAgentImpl.h | 
| index b4c6f357bcb3c7e207b6a6d72a4a19f754c9bf06..5141e5b084322ef050630423a40ac98e6c23baec 100644 | 
| --- a/third_party/WebKit/Source/web/WebDevToolsAgentImpl.h | 
| +++ b/third_party/WebKit/Source/web/WebDevToolsAgentImpl.h | 
| @@ -76,7 +76,6 @@ class WebDevToolsAgentImpl final | 
| , public InspectorEmulationAgent::Client | 
| , public InspectorTracingAgent::Client | 
| , public InspectorPageAgent::Client | 
| -    , public InspectorRuntimeAgent::Client | 
| , public InspectorSession::Client | 
| , private WebThread::TaskObserver { | 
| public: | 
| @@ -120,9 +119,6 @@ private: | 
| // InspectorEmulationAgent::Client implementation. | 
| void setCPUThrottlingRate(double) override; | 
|  | 
| -    // InspectorRuntimeAgent::Client implementation. | 
| -    void resumeStartup() override; | 
| - | 
| // InspectorPageAgent::Client implementation. | 
| void pageLayoutInvalidated(bool resized) override; | 
| void setPausedInDebuggerMessage(const String&) override; | 
| @@ -130,6 +126,9 @@ private: | 
|  | 
| // InspectorSession::Client implementation. | 
| void sendProtocolMessage(int sessionId, int callId, const String& response, const String& state) override; | 
| +    void resumeStartup() override; | 
| +    void profilingStarted() override; | 
| +    void profilingStopped() override; | 
|  | 
| // WebThread::TaskObserver implementation. | 
| void willProcessTask() override; | 
|  |