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

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

Issue 11415205: [chromedriver] Implement connecting to devtools and loading a page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 1 month 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
Index: chrome/test/chromedriver/chrome.h
diff --git a/chrome/test/chromedriver/chrome.h b/chrome/test/chromedriver/chrome.h
index c3df4c4f144df7c19700409626e93077720e806a..a0675d0e8f569d4eb732f24d2bb3ef071a81eb68 100644
--- a/chrome/test/chromedriver/chrome.h
+++ b/chrome/test/chromedriver/chrome.h
@@ -5,11 +5,15 @@
#ifndef CHROME_TEST_CHROMEDRIVER_CHROME_H_
#define CHROME_TEST_CHROMEDRIVER_CHROME_H_
+#include <string>
+
class Status;
class Chrome {
public:
virtual ~Chrome() {}
+
+ virtual Status Load(const std::string& url) = 0;
virtual Status Quit() = 0;
};

Powered by Google App Engine
This is Rietveld 408576698