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

Unified Diff: chrome/common/resource_dispatcher_unittest.cc

Issue 21039: Revert my change to get the tree green. Not sure why the tests became flaky.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 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/common/resource_bundle.h ('k') | chrome/common/security_filter_peer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/resource_dispatcher_unittest.cc
===================================================================
--- chrome/common/resource_dispatcher_unittest.cc (revision 9131)
+++ chrome/common/resource_dispatcher_unittest.cc (working copy)
@@ -84,10 +84,10 @@
void* iter = NULL;
int request_id;
- ASSERT_TRUE(ReadParam(&message_queue_[0], &iter, &request_id));
+ ASSERT_TRUE(IPC::ReadParam(&message_queue_[0], &iter, &request_id));
ViewHostMsg_Resource_Request request;
- ASSERT_TRUE(ReadParam(&message_queue_[0], &iter, &request));
+ ASSERT_TRUE(IPC::ReadParam(&message_queue_[0], &iter, &request));
// check values
EXPECT_EQ(test_page_url, request.url.spec());
@@ -119,7 +119,7 @@
// read the ack message.
iter = NULL;
int request_ack = -1;
- ASSERT_TRUE(ReadParam(&message_queue_[0], &iter, &request_ack));
+ ASSERT_TRUE(IPC::ReadParam(&message_queue_[0], &iter, &request_ack));
ASSERT_EQ(request_ack, request_id);
« no previous file with comments | « chrome/common/resource_bundle.h ('k') | chrome/common/security_filter_peer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698