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

Unified Diff: content/public/child/fixed_received_data.cc

Issue 1118233002: Introduce SharedMemoryDataConsumerHandle. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@data-received-with-ack
Patch Set: Created 5 years, 6 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/public/child/fixed_received_data.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/child/fixed_received_data.cc
diff --git a/content/public/child/fixed_received_data.cc b/content/public/child/fixed_received_data.cc
index 773a3fd9725d8c24e8430d1dcab15934287ea1e2..96599c2d30a8229ecb9fc7d023a97035c9b45c4e 100644
--- a/content/public/child/fixed_received_data.cc
+++ b/content/public/child/fixed_received_data.cc
@@ -12,7 +12,7 @@ FixedReceivedData::FixedReceivedData(const char* data,
: data_(data, data + length), encoded_length_(encoded_length) {
}
-FixedReceivedData::FixedReceivedData(scoped_ptr<ReceivedData> data)
+FixedReceivedData::FixedReceivedData(ReceivedData* data)
: FixedReceivedData(data->payload(),
data->encoded_length(),
data->encoded_length()) {
« no previous file with comments | « content/public/child/fixed_received_data.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698