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

Unified Diff: chrome/test/webdriver/commands/navigate_commands.cc

Issue 5572001: Send screenshots back to the client for debugging (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: fixed nit Created 9 years, 10 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/webdriver/commands/navigate_commands.cc
diff --git a/chrome/test/webdriver/commands/navigate_commands.cc b/chrome/test/webdriver/commands/navigate_commands.cc
index f65c6959ee218399ffc3879249926b3d2ea8dcea..6338e06a8cc2ede6fe27a23bf1a7d054de101924 100644
--- a/chrome/test/webdriver/commands/navigate_commands.cc
+++ b/chrome/test/webdriver/commands/navigate_commands.cc
@@ -24,7 +24,7 @@ void ForwardCommand::ExecutePost(Response* const response) {
return;
}
- session_->set_current_frame_xpath("");
+ session_->SetCurrentFrameXPath("");
kkania 2011/03/07 18:15:17 if you want to change this, really I think the bes
response->SetStatus(kSuccess);
}
@@ -48,7 +48,7 @@ void BackCommand::ExecutePost(Response* const response) {
return;
}
- session_->set_current_frame_xpath("");
+ session_->SetCurrentFrameXPath("");
response->SetStatus(kSuccess);
}
@@ -72,7 +72,7 @@ void RefreshCommand::ExecutePost(Response* const response) {
return;
}
- session_->set_current_frame_xpath("");
+ session_->SetCurrentFrameXPath("");
response->SetStatus(kSuccess);
}

Powered by Google App Engine
This is Rietveld 408576698