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

Unified Diff: content/common/resource_messages.h

Issue 1346923008: Add a dummy variable to ResourceMsg_DataReceived. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ipc_revert2
Patch Set: Fix unit test error. Created 5 years, 3 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/child/threaded_data_provider.cc ('k') | content/common/resource_messages.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/resource_messages.h
diff --git a/content/common/resource_messages.h b/content/common/resource_messages.h
index eec23940929dde08b02618cdaceda8095a1d0f04..5d0d2ef8fb6d08cbcba431c171ea20026a7a29e4 100644
--- a/content/common/resource_messages.h
+++ b/content/common/resource_messages.h
@@ -345,8 +345,11 @@ IPC_MESSAGE_CONTROL4(ResourceMsg_SetDataBuffer,
// Sent when some data from a resource request is ready. The data offset and
// length specify a byte range into the shared memory buffer provided by the
// SetDataBuffer message.
-IPC_MESSAGE_CONTROL4(ResourceMsg_DataReceived,
+// TODO(erikchen): This dummy variable is temporary and is only intended to be
+// present for one Canary release. http://crbug.com/527588.
+IPC_MESSAGE_CONTROL5(ResourceMsg_DataReceived,
int /* request_id */,
+ int /* dummy variable */,
int /* data_offset */,
int /* data_length */,
int /* encoded_data_length */)
« no previous file with comments | « content/child/threaded_data_provider.cc ('k') | content/common/resource_messages.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698