| 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 a6c6716427904c770f4138aa534752f0549fadda..164f28e1f7ffa445f593569b497f2f5da9f94c0b 100644
|
| --- a/third_party/WebKit/Source/web/WebDevToolsAgentImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebDevToolsAgentImpl.cpp
|
| @@ -46,6 +46,7 @@
|
| #include "core/inspector/InspectorCSSAgent.h"
|
| #include "core/inspector/InspectorDOMAgent.h"
|
| #include "core/inspector/InspectorDOMDebuggerAgent.h"
|
| +#include "core/inspector/InspectorDOMSnapshotAgent.h"
|
| #include "core/inspector/InspectorInputAgent.h"
|
| #include "core/inspector/InspectorLayerTreeAgent.h"
|
| #include "core/inspector/InspectorLogAgent.h"
|
| @@ -335,6 +336,8 @@ void WebDevToolsAgentImpl::InitializeSession(int session_id,
|
| resource_content_loader_.Get(), resource_container_.Get());
|
| session_->Append(css_agent);
|
|
|
| + session_->Append(InspectorDOMSnapshotAgent::Create(css_agent, dom_agent));
|
| +
|
| session_->Append(new InspectorAnimationAgent(
|
| inspected_frames_.Get(), css_agent, session_->V8Session()));
|
|
|
|
|