OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 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 "content/browser/devtools/protocol/devtools_domain_handler.h" |
| 6 |
| 7 #include "content/browser/devtools/protocol/protocol.h" |
| 8 |
| 9 namespace content { |
| 10 namespace protocol { |
| 11 |
| 12 DevToolsDomainHandler::DevToolsDomainHandler(const std::string& name) |
| 13 : name_(name) { |
| 14 } |
| 15 |
| 16 DevToolsDomainHandler::~DevToolsDomainHandler() { |
| 17 } |
| 18 |
| 19 void DevToolsDomainHandler::SetRenderFrameHost(RenderFrameHostImpl* host) { |
| 20 } |
| 21 |
| 22 void DevToolsDomainHandler::Wire(UberDispatcher* dispatcher) { |
| 23 } |
| 24 |
| 25 Response DevToolsDomainHandler::Disable() { |
| 26 return Response::OK(); |
| 27 } |
| 28 |
| 29 } // namespace protocol |
| 30 } // namespace content |
OLD | NEW |