Index: content/public/browser/devtools_socket_factory.h |
diff --git a/content/public/browser/devtools_socket_factory.h b/content/public/browser/devtools_socket_factory.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..40a4ea8851c1350e4b9b4150cafec8c7c488be63 |
--- /dev/null |
+++ b/content/public/browser/devtools_socket_factory.h |
@@ -0,0 +1,33 @@ |
+// Copyright (c) 2016 The Chromium Authors. All rights reserved. |
dgozman
2016/09/02 18:25:45
no (c)
|
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CONTENT_PUBLIC_BROWSER_DEVTOOLS_SOCKET_FACTORY_H_ |
+#define CONTENT_PUBLIC_BROWSER_DEVTOOLS_SOCKET_FACTORY_H_ |
+ |
+#include <string> |
+ |
+#include "net/socket/server_socket.h" |
+ |
+namespace content { |
+ |
+// Factory of net::ServerSocket. This is to separate instantiating dev tools |
+// and instantiating server sockets. |
+// All methods including destructor are called on a separate thread |
+// different from any BrowserThread instance. |
+class DevToolsSocketFactory { |
+public: |
dgozman
2016/09/02 18:25:45
Please reformat.
|
+virtual ~DevToolsSocketFactory() {} |
+ |
+// Returns a new instance of ServerSocket or nullptr if an error occurred. |
+virtual std::unique_ptr<net::ServerSocket> CreateForHttpServer() = 0; |
+ |
+// Creates a named socket for reversed tethering implementation (used with |
+// remote debugging, primarily for mobile). |
+virtual std::unique_ptr<net::ServerSocket> CreateForTethering( |
+ std::string* out_name) = 0; |
+}; |
+ |
+} // namespace content |
+ |
+#endif // CONTENT_PUBLIC_BROWSER_DEVTOOLS_SOCKET_FACTORY_H_ |