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

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

Issue 5998006: Clean up Automation and Chrome Frame IPC code. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years 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/common/automation_messages_internal.h ('k') | chrome/test/automation/automation_handle_tracker.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/automation/autocomplete_edit_proxy.cc
===================================================================
--- chrome/test/automation/autocomplete_edit_proxy.cc (revision 69966)
+++ chrome/test/automation/autocomplete_edit_proxy.cc (working copy)
@@ -22,7 +22,7 @@
}
bool result = false;
sender_->Send(new AutomationMsg_AutocompleteEditGetText(
- 0, handle_, &result, text));
+ handle_, &result, text));
return result;
}
@@ -31,7 +31,7 @@
return false;
bool edit_exists = false;
sender_->Send(new AutomationMsg_WaitForAutocompleteEditFocus(
- 0, handle_, &edit_exists));
+ handle_, &edit_exists));
return edit_exists;
}
@@ -40,7 +40,7 @@
return false;
bool result = false;
sender_->Send(new AutomationMsg_AutocompleteEditSetText(
- 0, handle_, text, &result));
+ handle_, text, &result));
return result;
}
@@ -53,7 +53,7 @@
}
bool edit_exists = false;
sender_->Send(new AutomationMsg_AutocompleteEditIsQueryInProgress(
- 0, handle_, &edit_exists, query_in_progress));
+ handle_, &edit_exists, query_in_progress));
return edit_exists;
}
@@ -81,6 +81,6 @@
}
bool edit_exists = false;
sender_->Send(new AutomationMsg_AutocompleteEditGetMatches(
- 0, handle_, &edit_exists, matches));
+ handle_, &edit_exists, matches));
return edit_exists;
}
« no previous file with comments | « chrome/common/automation_messages_internal.h ('k') | chrome/test/automation/automation_handle_tracker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698