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

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

Issue 15393005: [chromedriver] Remove unnecessary round trips to Chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 7 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
« no previous file with comments | « chrome/test/chromedriver/chrome/stub_web_view.h ('k') | chrome/test/chromedriver/chrome/web_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/chromedriver/chrome/stub_web_view.cc
diff --git a/chrome/test/chromedriver/chrome/stub_web_view.cc b/chrome/test/chromedriver/chrome/stub_web_view.cc
index 4180601552d121b267fae29ae5e6735e515a10d6..1cdc265d01cbe6f796ad93658b2a8a9d39aa2181 100644
--- a/chrome/test/chromedriver/chrome/stub_web_view.cc
+++ b/chrome/test/chromedriver/chrome/stub_web_view.cc
@@ -20,6 +20,10 @@ Status StubWebView::ConnectIfNecessary() {
return Status(kOk);
}
+DevToolsClient* StubWebView::GetDevToolsClient() {
+ return NULL;
+}
+
Status StubWebView::Load(const std::string& url) {
return Status(kOk);
}
@@ -90,10 +94,6 @@ Status StubWebView::IsPendingNavigation(const std::string& frame_id,
return Status(kOk);
}
-Status StubWebView::GetMainFrame(std::string* frame_id) {
- return Status(kOk);
-}
-
JavaScriptDialogManager* StubWebView::GetJavaScriptDialogManager() {
return NULL;
}
« no previous file with comments | « chrome/test/chromedriver/chrome/stub_web_view.h ('k') | chrome/test/chromedriver/chrome/web_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698