Index: content/browser/devtools/protocol/tethering_handler.cc |
diff --git a/content/browser/devtools/protocol/tethering_handler.cc b/content/browser/devtools/protocol/tethering_handler.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..53b46f0de2c8711118344da8d7178d50c5b45438 |
--- /dev/null |
+++ b/content/browser/devtools/protocol/tethering_handler.cc |
@@ -0,0 +1,33 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "content/browser/devtools/protocol/tethering_handler.h" |
+ |
+namespace content { |
+namespace devtools { |
+namespace tethering { |
+ |
+typedef DevToolsProtocolClient::Response Response; |
+ |
+TetheringHandler::TetheringHandler() { |
+} |
+ |
+TetheringHandler::~TetheringHandler() { |
+} |
+ |
+void TetheringHandler::SetClient(scoped_ptr<Client> client) { |
+ client_.swap(client); |
+} |
+ |
+Response TetheringHandler::Bind(int port) { |
+ return Response::FallThrough(); |
+} |
+ |
+Response TetheringHandler::Unbind(int port) { |
+ return Response::FallThrough(); |
+} |
+ |
+} // namespace tethering |
+} // namespace devtools |
+} // namespace content |