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

Unified Diff: third_party/mojo/src/mojo/edk/system/data_pipe_impl.cc

Issue 1019173002: Update mojo sdk to rev 7214b7ec7d27563b2666afad86cf1c5895c56c18 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Keep permission service alive if embedder drops requests Created 5 years, 9 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
Index: third_party/mojo/src/mojo/edk/system/data_pipe_impl.cc
diff --git a/third_party/mojo/src/mojo/edk/system/data_pipe_impl.cc b/third_party/mojo/src/mojo/edk/system/data_pipe_impl.cc
index 6a4d070603268687193a15ecc1ea14239be892ea..74ba55abd02ee16d1bc1e786e8b1d1c238072313 100644
--- a/third_party/mojo/src/mojo/edk/system/data_pipe_impl.cc
+++ b/third_party/mojo/src/mojo/edk/system/data_pipe_impl.cc
@@ -35,7 +35,8 @@ void DataPipeImpl::ConvertDataToMessages(const char* buffer,
// Note: |message_num_bytes| fits in a |uint32_t| since the capacity does.
scoped_ptr<MessageInTransit> message(new MessageInTransit(
- MessageInTransit::kTypeEndpoint, MessageInTransit::kSubtypeEndpointData,
+ MessageInTransit::kTypeEndpointClient,
+ MessageInTransit::kSubtypeEndpointClientData,
static_cast<uint32_t>(message_num_bytes), buffer + *start_index));
message_queue->AddMessage(message.Pass());
« no previous file with comments | « third_party/mojo/src/mojo/edk/system/data_pipe.h ('k') | third_party/mojo/src/mojo/edk/system/data_pipe_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698