summaryrefslogtreecommitdiffstats
path: root/chrome/browser/internal_auth.h
diff options
context:
space:
mode:
authordilmah@chromium.org <dilmah@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-14 17:48:07 +0000
committerdilmah@chromium.org <dilmah@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-14 17:48:07 +0000
commit5ddffb822144de64aa36bd1aa4fc0aad634a3454 (patch)
tree1319b6250421e165159e82288df605ae7d245b5c /chrome/browser/internal_auth.h
parent3b99e2ef219b43cdc51a3313268e6c9a27aa1be9 (diff)
downloadchromium_src-5ddffb822144de64aa36bd1aa4fc0aad634a3454.zip
chromium_src-5ddffb822144de64aa36bd1aa4fc0aad634a3454.tar.gz
chromium_src-5ddffb822144de64aa36bd1aa4fc0aad634a3454.tar.bz2
Support SSL connections in websocket-to-TCP proxy.
For historical reasons current implementation of WS-to-TCP proxy was implemented as standalone libevent-based server. Then it was integrated into chromium as is. In order to support SSL we need to connect libevent-based proxy with MessageLoopForIO-based chromium network stack. We do it using pipes. It is intended as temporary solution until we will have new shiny implementation of WS-to-TCP proxy integrated into network stack. BUG=chromium-os:15533 TEST=Manual Review URL: http://codereview.chromium.org/8087001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@105515 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/internal_auth.h')
-rw-r--r--chrome/browser/internal_auth.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome/browser/internal_auth.h b/chrome/browser/internal_auth.h
index 008559b..b253b80 100644
--- a/chrome/browser/internal_auth.h
+++ b/chrome/browser/internal_auth.h
@@ -12,6 +12,7 @@
#include "base/gtest_prod_util.h"
class WebSocketProxyPrivateGetPassportForTCPFunction;
+class WebSocketProxyPrivateGetURLForTCPFunction;
namespace browser {
@@ -59,6 +60,7 @@ class InternalAuthGeneration {
static void GenerateNewKey();
friend class ::WebSocketProxyPrivateGetPassportForTCPFunction;
+ friend class ::WebSocketProxyPrivateGetURLForTCPFunction;
FRIEND_TEST_ALL_PREFIXES(InternalAuthTest, BasicGeneration);
FRIEND_TEST_ALL_PREFIXES(InternalAuthTest, DoubleGeneration);