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

Unified Diff: content/child/resource_dispatcher_unittest.cc

Issue 283623002: Add support for passing an arbitrary parameter to an IPC message handler. The motivation is for Web… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: sync Created 6 years, 7 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 | « content/browser/worker_host/worker_process_host.cc ('k') | content/common/resource_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/resource_dispatcher_unittest.cc
===================================================================
--- content/child/resource_dispatcher_unittest.cc (revision 270218)
+++ content/child/resource_dispatcher_unittest.cc (working copy)
@@ -112,10 +112,11 @@
// returning the hardcoded file contents.
void ProcessMessages() {
while (!message_queue_.empty()) {
- int request_id;
- ResourceHostMsg_Request request;
+ ResourceHostMsg_RequestResource::Param params;
ASSERT_TRUE(ResourceHostMsg_RequestResource::Read(
- &message_queue_[0], &request_id, &request));
+ &message_queue_[0], &params));
+ int request_id = params.b;
+ ResourceHostMsg_Request request = params.c;
// check values
EXPECT_EQ(test_page_url, request.url.spec());
« no previous file with comments | « content/browser/worker_host/worker_process_host.cc ('k') | content/common/resource_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698