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

Unified Diff: chrome/test/automation/browser_proxy.cc

Issue 6482014: Implement sendKeys webdriver API in ChromeDriver. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' 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/automation/browser_proxy.cc
===================================================================
--- chrome/test/automation/browser_proxy.cc (revision 73909)
+++ chrome/test/automation/browser_proxy.cc (working copy)
@@ -581,9 +581,11 @@
return false;
bool result = false;
- return sender_->Send(new AutomationMsg_SendJSONRequest(handle_,
- request, response,
- &result));
+ if (!sender_->Send(new AutomationMsg_SendJSONRequest(handle_,
+ request,
+ response,
+ &result)))
+ return false;
return result;
}

Powered by Google App Engine
This is Rietveld 408576698