summaryrefslogtreecommitdiffstats
path: root/chrome/test/chromedriver/chrome.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/test/chromedriver/chrome.h')
-rw-r--r--chrome/test/chromedriver/chrome.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/test/chromedriver/chrome.h b/chrome/test/chromedriver/chrome.h
index c3df4c4..a0675d0 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;
};