Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7518)

Unified Diff: chrome/test/chromedriver/chrome_launcher_impl.h

Issue 11415205: [chromedriver] Implement connecting to devtools and loading a page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address comments Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/chromedriver/chrome_impl_unittest.cc ('k') | chrome/test/chromedriver/chrome_launcher_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
};
« no previous file with comments | « chrome/test/chromedriver/chrome_impl_unittest.cc ('k') | chrome/test/chromedriver/chrome_launcher_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698