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/data_pipe.h" | 5 #include "mojo/edk/system/data_pipe.h" |
6 | 6 |
7 #include <string.h> | 7 #include <string.h> |
8 | 8 |
9 #include <algorithm> | 9 #include <algorithm> |
10 #include <limits> | 10 #include <limits> |
11 #include <memory> | 11 #include <memory> |
12 #include <utility> | 12 #include <utility> |
13 | 13 |
14 #include "base/logging.h" | 14 #include "base/logging.h" |
15 #include "base/memory/aligned_memory.h" | 15 #include "base/memory/aligned_memory.h" |
16 #include "mojo/edk/system/awakable_list.h" | 16 #include "mojo/edk/system/awakable_list.h" |
17 #include "mojo/edk/system/channel.h" | 17 #include "mojo/edk/system/channel.h" |
18 #include "mojo/edk/system/configuration.h" | 18 #include "mojo/edk/system/configuration.h" |
19 #include "mojo/edk/system/data_pipe_impl.h" | 19 #include "mojo/edk/system/data_pipe_impl.h" |
20 #include "mojo/edk/system/incoming_endpoint.h" | 20 #include "mojo/edk/system/incoming_endpoint.h" |
21 #include "mojo/edk/system/local_data_pipe_impl.h" | 21 #include "mojo/edk/system/local_data_pipe_impl.h" |
22 #include "mojo/edk/system/memory.h" | 22 #include "mojo/edk/system/memory.h" |
23 #include "mojo/edk/system/options_validation.h" | 23 #include "mojo/edk/system/options_validation.h" |
24 #include "mojo/edk/system/remote_consumer_data_pipe_impl.h" | 24 #include "mojo/edk/system/remote_consumer_data_pipe_impl.h" |
25 #include "mojo/edk/system/remote_producer_data_pipe_impl.h" | 25 #include "mojo/edk/system/remote_producer_data_pipe_impl.h" |
26 #include "mojo/edk/util/make_unique.h" | 26 #include "mojo/edk/util/make_unique.h" |
27 | 27 |
28 using mojo::embedder::ScopedPlatformHandle; | 28 using mojo::platform::ScopedPlatformHandle; |
29 using mojo::util::MakeUnique; | 29 using mojo::util::MakeUnique; |
30 using mojo::util::MutexLocker; | 30 using mojo::util::MutexLocker; |
31 using mojo::util::RefPtr; | 31 using mojo::util::RefPtr; |
32 | 32 |
33 namespace mojo { | 33 namespace mojo { |
34 namespace system { | 34 namespace system { |
35 | 35 |
36 // static | 36 // static |
37 MojoCreateDataPipeOptions DataPipe::GetDefaultCreateOptions() { | 37 MojoCreateDataPipeOptions DataPipe::GetDefaultCreateOptions() { |
38 MojoCreateDataPipeOptions result = { | 38 MojoCreateDataPipeOptions result = { |
(...skipping 770 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
809 SetProducerClosedNoLock(); | 809 SetProducerClosedNoLock(); |
810 } | 810 } |
811 | 811 |
812 void DataPipe::SetConsumerClosed() { | 812 void DataPipe::SetConsumerClosed() { |
813 MutexLocker locker(&mutex_); | 813 MutexLocker locker(&mutex_); |
814 SetConsumerClosedNoLock(); | 814 SetConsumerClosedNoLock(); |
815 } | 815 } |
816 | 816 |
817 } // namespace system | 817 } // namespace system |
818 } // namespace mojo | 818 } // namespace mojo |
OLD | NEW |