summaryrefslogtreecommitdiffstats
path: root/chrome/test/chromedriver/chrome_launcher_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/test/chromedriver/chrome_launcher_impl.h')
-rw-r--r--chrome/test/chromedriver/chrome_launcher_impl.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/chrome/test/chromedriver/chrome_launcher_impl.h b/chrome/test/chromedriver/chrome_launcher_impl.h
index 542017e3b..1910ac5 100644
--- a/chrome/test/chromedriver/chrome_launcher_impl.h
+++ b/chrome/test/chromedriver/chrome_launcher_impl.h
@@ -10,6 +10,7 @@
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "chrome/test/chromedriver/chrome_launcher.h"
+#include "chrome/test/chromedriver/net/sync_websocket_factory.h"
class Chrome;
class FilePath;
@@ -18,7 +19,8 @@ class URLRequestContextGetter;
class ChromeLauncherImpl : public ChromeLauncher {
public:
- explicit ChromeLauncherImpl(URLRequestContextGetter* context_getter);
+ explicit ChromeLauncherImpl(URLRequestContextGetter* context_getter,
+ const SyncWebSocketFactory& socket_factory);
virtual ~ChromeLauncherImpl();
// Overridden from ChromeLauncher:
@@ -27,6 +29,7 @@ class ChromeLauncherImpl : public ChromeLauncher {
private:
scoped_refptr<URLRequestContextGetter> context_getter_;
+ SyncWebSocketFactory socket_factory_;
DISALLOW_COPY_AND_ASSIGN(ChromeLauncherImpl);
};