// Copyright 2016 The Chromium Authors // 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 { … }; } // namespace content #endif // CONTENT_PUBLIC_BROWSER_DEVTOOLS_SOCKET_FACTORY_H_