| Index: chrome/test/chromedriver/chrome_launcher_impl.h
|
| diff --git a/chrome/test/chromedriver/chrome_launcher_impl.h b/chrome/test/chromedriver/chrome_launcher_impl.h
|
| index ecd7bd124f2a2a5d0983d299f95832ad5a3aa778..542017e3b58fb8b7d90a58659d851f7cd4389e1a 100644
|
| --- a/chrome/test/chromedriver/chrome_launcher_impl.h
|
| +++ b/chrome/test/chromedriver/chrome_launcher_impl.h
|
| @@ -7,16 +7,18 @@
|
|
|
| #include "base/basictypes.h"
|
| #include "base/compiler_specific.h"
|
| +#include "base/memory/ref_counted.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "chrome/test/chromedriver/chrome_launcher.h"
|
|
|
| class Chrome;
|
| class FilePath;
|
| class Status;
|
| +class URLRequestContextGetter;
|
|
|
| class ChromeLauncherImpl : public ChromeLauncher {
|
| public:
|
| - ChromeLauncherImpl();
|
| + explicit ChromeLauncherImpl(URLRequestContextGetter* context_getter);
|
| virtual ~ChromeLauncherImpl();
|
|
|
| // Overridden from ChromeLauncher:
|
| @@ -24,6 +26,8 @@ class ChromeLauncherImpl : public ChromeLauncher {
|
| scoped_ptr<Chrome>* chrome) OVERRIDE;
|
|
|
| private:
|
| + scoped_refptr<URLRequestContextGetter> context_getter_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(ChromeLauncherImpl);
|
| };
|
|
|
|
|