Index: net/web2socket_proxy/web2socket.h |
diff --git a/net/web2socket_proxy/web2socket.h b/net/web2socket_proxy/web2socket.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..ab54498dcbe7b89d2f623e2320b443d3756b4c0a |
--- /dev/null |
+++ b/net/web2socket_proxy/web2socket.h |
@@ -0,0 +1,14 @@ |
+// Copyright (c) 2010 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. |
+ |
+#ifndef CHROME_WEB2SOCKET_PROXY_WEB2SOCKET_H_ |
tyoshino (SeeGerritForStatus)
2010/12/03 07:53:33
#ifndef NET_WEB2SOCKET_PROXY_WEB2SOCKET_H_
Denis Lagno
2010/12/03 16:28:50
Done.
|
+#define CHROME_WEB2SOCKET_PROXY_WEB2SOCKET_H_ |
+ |
+#include <string> |
+ |
+static const int kWeb2SocketDefaultPort = 10101; |
+ |
+extern void RunWeb2SocketServer(const std::string& origin, int port); |
+ |
+#endif // CHROME_WEB2SOCKET_PROXY_WEB2SOCKET_H_ |