| 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 2e7f8e349df7e32e94884ede698fc0cc971515c8..44849ad6ff2ceb8d0f96e29f5dd120bf2ae286f2 100644
|
| --- a/third_party/WebKit/Source/web/WebDevToolsAgentImpl.h
|
| +++ b/third_party/WebKit/Source/web/WebDevToolsAgentImpl.h
|
| @@ -39,6 +39,7 @@
|
| #include "public/platform/WebSize.h"
|
| #include "public/platform/WebThread.h"
|
| #include "public/web/WebDevToolsAgent.h"
|
| +#include "web/InspectorEmulationAgent.h"
|
| #include "wtf/Forward.h"
|
| #include "wtf/OwnPtr.h"
|
| #include "wtf/Vector.h"
|
| @@ -71,6 +72,7 @@ class WebDevToolsAgentImpl final
|
| : public NoBaseWillBeGarbageCollectedFinalized<WebDevToolsAgentImpl>
|
| , public WebDevToolsAgent
|
| , public InspectorStateClient
|
| + , public InspectorEmulationAgent::Client
|
| , public InspectorTracingAgent::Client
|
| , public InspectorRuntimeAgent::Client
|
| , public InspectorFrontendChannel
|
| @@ -117,6 +119,9 @@ private:
|
| void enableTracing(const WTF::String& categoryFilter) override;
|
| void disableTracing() override;
|
|
|
| + // InspectorEmulationAgent::Client implementation.
|
| + void setCPUThrottlingRate(double) override;
|
| +
|
| // InspectorRuntimeAgent::Client implementation.
|
| void resumeStartup() override;
|
|
|
|
|