| Index: third_party/WebKit/Source/web/WebDevToolsAgentImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebDevToolsAgentImpl.cpp b/third_party/WebKit/Source/web/WebDevToolsAgentImpl.cpp
|
| index a03ded1d2ed96a7e7fbf7d44a12f68158008fbf6..6947d9b2ff184f63ca88e82d7612c50a37c77921 100644
|
| --- a/third_party/WebKit/Source/web/WebDevToolsAgentImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebDevToolsAgentImpl.cpp
|
| @@ -50,6 +50,7 @@
|
| #include "core/inspector/InspectorCSSAgent.h"
|
| #include "core/inspector/InspectorDOMAgent.h"
|
| #include "core/inspector/InspectorDOMDebuggerAgent.h"
|
| +#include "core/inspector/InspectorDOMSnapshotAgent.h"
|
| #include "core/inspector/InspectorEmulationAgent.h"
|
| #include "core/inspector/InspectorInputAgent.h"
|
| #include "core/inspector/InspectorLayerTreeAgent.h"
|
| @@ -334,6 +335,8 @@ InspectorSession* WebDevToolsAgentImpl::InitializeSession(int session_id,
|
| resource_content_loader_.Get(), resource_container_.Get());
|
| session->Append(css_agent);
|
|
|
| + session->Append(InspectorDOMSnapshotAgent::Create(inspected_frames_.Get()));
|
| +
|
| session->Append(new InspectorAnimationAgent(inspected_frames_.Get(),
|
| css_agent, session->V8Session()));
|
|
|
|
|