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

Side by Side Diff: mojo/edk/system/message_in_transit.cc

Issue 799113004: Update mojo sdk to rev 59145288bae55b0fce4276b017df6a1117bcf00f (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add mojo's ply to checklicenses whitelist Created 6 years 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 unified diff | Download patch
« no previous file with comments | « mojo/edk/system/message_in_transit.h ('k') | mojo/edk/system/message_pipe.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "mojo/edk/system/message_in_transit.h" 5 #include "mojo/edk/system/message_in_transit.h"
6 6
7 #include <string.h> 7 #include <string.h>
8 8
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "mojo/edk/system/configuration.h" 11 #include "mojo/edk/system/configuration.h"
12 #include "mojo/edk/system/transport_data.h" 12 #include "mojo/edk/system/transport_data.h"
13 13
14 namespace mojo { 14 namespace mojo {
15 namespace system { 15 namespace system {
16 16
17 STATIC_CONST_MEMBER_DEFINITION const MessageInTransit::Type 17 STATIC_CONST_MEMBER_DEFINITION const MessageInTransit::Type
18 MessageInTransit::kTypeEndpoint; 18 MessageInTransit::kTypeEndpoint;
19 STATIC_CONST_MEMBER_DEFINITION const MessageInTransit::Type 19 STATIC_CONST_MEMBER_DEFINITION const MessageInTransit::Type
20 MessageInTransit::kTypeChannel; 20 MessageInTransit::kTypeChannel;
21 STATIC_CONST_MEMBER_DEFINITION const MessageInTransit::Type 21 STATIC_CONST_MEMBER_DEFINITION const MessageInTransit::Type
22 MessageInTransit::kTypeRawChannel; 22 MessageInTransit::kTypeRawChannel;
23 STATIC_CONST_MEMBER_DEFINITION const MessageInTransit::Subtype 23 STATIC_CONST_MEMBER_DEFINITION const MessageInTransit::Subtype
24 MessageInTransit::kSubtypeEndpointData; 24 MessageInTransit::kSubtypeEndpointData;
25 STATIC_CONST_MEMBER_DEFINITION const MessageInTransit::Subtype 25 STATIC_CONST_MEMBER_DEFINITION const MessageInTransit::Subtype
26 MessageInTransit::kSubtypeChannelAttachAndRunEndpoint; 26 MessageInTransit::kSubtypeChannelAttachAndRunEndpoint;
27 STATIC_CONST_MEMBER_DEFINITION const MessageInTransit::Subtype 27 STATIC_CONST_MEMBER_DEFINITION const MessageInTransit::Subtype
28 MessageInTransit::kSubtypeChannelRemoveMessagePipeEndpoint; 28 MessageInTransit::kSubtypeChannelRemoveEndpoint;
29 STATIC_CONST_MEMBER_DEFINITION const MessageInTransit::Subtype 29 STATIC_CONST_MEMBER_DEFINITION const MessageInTransit::Subtype
30 MessageInTransit::kSubtypeChannelRemoveMessagePipeEndpointAck; 30 MessageInTransit::kSubtypeChannelRemoveEndpointAck;
31 STATIC_CONST_MEMBER_DEFINITION const MessageInTransit::Subtype 31 STATIC_CONST_MEMBER_DEFINITION const MessageInTransit::Subtype
32 MessageInTransit::kSubtypeRawChannelPosixExtraPlatformHandles; 32 MessageInTransit::kSubtypeRawChannelPosixExtraPlatformHandles;
33 STATIC_CONST_MEMBER_DEFINITION const size_t MessageInTransit::kMessageAlignment; 33 STATIC_CONST_MEMBER_DEFINITION const size_t MessageInTransit::kMessageAlignment;
34 34
35 struct MessageInTransit::PrivateStructForCompileAsserts { 35 struct MessageInTransit::PrivateStructForCompileAsserts {
36 // The size of |Header| must be a multiple of the alignment. 36 // The size of |Header| must be a multiple of the alignment.
37 static_assert(sizeof(Header) % kMessageAlignment == 0, 37 static_assert(sizeof(Header) % kMessageAlignment == 0,
38 "sizeof(MessageInTransit::Header) invalid"); 38 "sizeof(MessageInTransit::Header) invalid");
39 }; 39 };
40 40
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 DCHECK_EQ(main_buffer_size_ % kMessageAlignment, 0u); 213 DCHECK_EQ(main_buffer_size_ % kMessageAlignment, 0u);
214 header()->total_size = static_cast<uint32_t>(main_buffer_size_); 214 header()->total_size = static_cast<uint32_t>(main_buffer_size_);
215 if (transport_data_) { 215 if (transport_data_) {
216 header()->total_size += 216 header()->total_size +=
217 static_cast<uint32_t>(transport_data_->buffer_size()); 217 static_cast<uint32_t>(transport_data_->buffer_size());
218 } 218 }
219 } 219 }
220 220
221 } // namespace system 221 } // namespace system
222 } // namespace mojo 222 } // namespace mojo
OLDNEW
« no previous file with comments | « mojo/edk/system/message_in_transit.h ('k') | mojo/edk/system/message_pipe.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698