1 // Copyright 2018 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "components/ui_devtools/viz/overlay_agent_viz.h"
6 
7 namespace ui_devtools {
8 
OverlayAgentViz(DOMAgentViz * dom_agent)9 OverlayAgentViz::OverlayAgentViz(DOMAgentViz* dom_agent)
10     : OverlayAgent(dom_agent) {}
11 
~OverlayAgentViz()12 OverlayAgentViz::~OverlayAgentViz() {}
13 
setInspectMode(const protocol::String & in_mode,protocol::Maybe<protocol::Overlay::HighlightConfig> in_highlightConfig)14 protocol::Response OverlayAgentViz::setInspectMode(
15     const protocol::String& in_mode,
16     protocol::Maybe<protocol::Overlay::HighlightConfig> in_highlightConfig) {
17   return protocol::Response::Success();
18 }
19 
highlightNode(std::unique_ptr<protocol::Overlay::HighlightConfig> highlight_config,protocol::Maybe<int> node_id)20 protocol::Response OverlayAgentViz::highlightNode(
21     std::unique_ptr<protocol::Overlay::HighlightConfig> highlight_config,
22     protocol::Maybe<int> node_id) {
23   return protocol::Response::Success();
24 }
25 
hideHighlight()26 protocol::Response OverlayAgentViz::hideHighlight() {
27   return protocol::Response::Success();
28 }
29 
30 }  // namespace ui_devtools
31