OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 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/worker_domain_handler.h" |
| 6 |
| 7 namespace content { |
| 8 namespace devtools { |
| 9 namespace worker { |
| 10 |
| 11 typedef DevToolsProtocolFrontend::Response Response; |
| 12 typedef DevToolsProtocolFrontend::ResponseStatus ResponseStatus; |
| 13 |
| 14 Handler::Handler() { |
| 15 } |
| 16 |
| 17 Handler::~Handler() { |
| 18 } |
| 19 |
| 20 void Handler::OnClientDetached() { |
| 21 } |
| 22 |
| 23 void Handler::SetRenderViewHost(RenderViewHostImpl* host) { |
| 24 } |
| 25 |
| 26 void Handler::SetFrontend(scoped_ptr<Frontend> frontend) { |
| 27 frontend_.swap(frontend); |
| 28 } |
| 29 |
| 30 Response Handler::DisconnectFromWorker(int worker_id) { |
| 31 return Response::FallThrough(); |
| 32 } |
| 33 |
| 34 } // namespace worker |
| 35 } // namespace devtools |
| 36 } // namespace content |
OLD | NEW |