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

Unified Diff: chrome_frame/test/net/test_automation_provider.cc

Issue 6324002: Fix ChromeFrame net tests which have broken since revision 70089 which added ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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/browser/automation/automation_provider.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/test/net/test_automation_provider.cc
===================================================================
--- chrome_frame/test/net/test_automation_provider.cc (revision 71338)
+++ chrome_frame/test/net/test_automation_provider.cc (working copy)
@@ -59,8 +59,7 @@
bool TestAutomationProvider::Send(IPC::Message* msg) {
if (msg->type() == AutomationMsg_TabLoaded::ID) {
DCHECK(tab_handle_ == -1) << "Currently only support one tab";
- void* iter = NULL;
- CHECK(msg->ReadInt(&iter, &tab_handle_));
+ tab_handle_ = msg->routing_id();
DVLOG(1) << "Got tab handle: " << tab_handle_;
DCHECK(tab_handle_ != -1 && tab_handle_ != 0);
delegate_->OnInitialTabLoaded();
« no previous file with comments | « chrome/browser/automation/automation_provider.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698