OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/raw_channel.h" | 5 #include "mojo/system/raw_channel.h" |
6 | 6 |
7 #include <string.h> | 7 #include <string.h> |
8 | 8 |
9 #include <algorithm> | 9 #include <algorithm> |
10 | 10 |
11 #include "base/bind.h" | 11 #include "base/bind.h" |
12 #include "base/location.h" | 12 #include "base/location.h" |
13 #include "base/logging.h" | 13 #include "base/logging.h" |
14 #include "base/message_loop/message_loop.h" | 14 #include "base/message_loop/message_loop.h" |
15 #include "base/stl_util.h" | 15 #include "base/stl_util.h" |
16 #include "mojo/edk/system/message_in_transit.h" | 16 #include "mojo/system/message_in_transit.h" |
17 #include "mojo/edk/system/transport_data.h" | 17 #include "mojo/system/transport_data.h" |
18 | 18 |
19 namespace mojo { | 19 namespace mojo { |
20 namespace system { | 20 namespace system { |
21 | 21 |
22 const size_t kReadSize = 4096; | 22 const size_t kReadSize = 4096; |
23 | 23 |
24 // RawChannel::ReadBuffer ------------------------------------------------------ | 24 // RawChannel::ReadBuffer ------------------------------------------------------ |
25 | 25 |
26 RawChannel::ReadBuffer::ReadBuffer() : buffer_(kReadSize), num_valid_bytes_(0) { | 26 RawChannel::ReadBuffer::ReadBuffer() : buffer_(kReadSize), num_valid_bytes_(0) { |
27 } | 27 } |
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
513 | 513 |
514 write_stopped_ = true; | 514 write_stopped_ = true; |
515 STLDeleteElements(&write_buffer_->message_queue_); | 515 STLDeleteElements(&write_buffer_->message_queue_); |
516 write_buffer_->platform_handles_offset_ = 0; | 516 write_buffer_->platform_handles_offset_ = 0; |
517 write_buffer_->data_offset_ = 0; | 517 write_buffer_->data_offset_ = 0; |
518 return false; | 518 return false; |
519 } | 519 } |
520 | 520 |
521 } // namespace system | 521 } // namespace system |
522 } // namespace mojo | 522 } // namespace mojo |
OLD | NEW |