OLD | NEW |
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/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/constants.h" | 11 #include "mojo/system/constants.h" |
12 #include "mojo/edk/system/transport_data.h" | 12 #include "mojo/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::kTypeMessagePipeEndpoint; | 18 MessageInTransit::kTypeMessagePipeEndpoint; |
19 STATIC_CONST_MEMBER_DEFINITION const MessageInTransit::Type | 19 STATIC_CONST_MEMBER_DEFINITION const MessageInTransit::Type |
20 MessageInTransit::kTypeMessagePipe; | 20 MessageInTransit::kTypeMessagePipe; |
21 STATIC_CONST_MEMBER_DEFINITION const MessageInTransit::Type | 21 STATIC_CONST_MEMBER_DEFINITION const MessageInTransit::Type |
22 MessageInTransit::kTypeChannel; | 22 MessageInTransit::kTypeChannel; |
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 DCHECK_EQ(main_buffer_size_ % kMessageAlignment, 0u); | 215 DCHECK_EQ(main_buffer_size_ % kMessageAlignment, 0u); |
216 header()->total_size = static_cast<uint32_t>(main_buffer_size_); | 216 header()->total_size = static_cast<uint32_t>(main_buffer_size_); |
217 if (transport_data_) { | 217 if (transport_data_) { |
218 header()->total_size += | 218 header()->total_size += |
219 static_cast<uint32_t>(transport_data_->buffer_size()); | 219 static_cast<uint32_t>(transport_data_->buffer_size()); |
220 } | 220 } |
221 } | 221 } |
222 | 222 |
223 } // namespace system | 223 } // namespace system |
224 } // namespace mojo | 224 } // namespace mojo |
OLD | NEW |