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

Unified Diff: chrome/test/chromedriver/chrome/stub_chrome.cc

Issue 12978003: [chromedriver] Fix 3 bugs about web view, window handle and target window. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 months 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/stub_chrome.cc
diff --git a/chrome/test/chromedriver/chrome/stub_chrome.cc b/chrome/test/chromedriver/chrome/stub_chrome.cc
index f430f92493f59af7c64057fd02058983a5b304ee..56b565f952097331096dafa7c365229f8e4ce4f7 100644
--- a/chrome/test/chromedriver/chrome/stub_chrome.cc
+++ b/chrome/test/chromedriver/chrome/stub_chrome.cc
@@ -14,7 +14,11 @@ std::string StubChrome::GetVersion() {
return "";
}
-Status StubChrome::GetWebViews(std::list<WebView*>* web_views) {
+Status StubChrome::GetWebViewIds(std::list<std::string>* web_view_ids) {
+ return Status(kOk);
+}
+
+Status StubChrome::GetWebViewById(const std::string& id, WebView** web_view) {
return Status(kOk);
}

Powered by Google App Engine
This is Rietveld 408576698