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_producer_dispatcher.h" | 5 #include "mojo/edk/system/data_pipe_producer_dispatcher.h" |
6 | 6 |
7 #include <utility> | 7 #include <utility> |
8 | 8 |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "mojo/edk/system/data_pipe.h" | 10 #include "mojo/edk/system/data_pipe.h" |
11 #include "mojo/edk/system/memory.h" | 11 #include "mojo/edk/system/memory.h" |
12 #include "mojo/edk/system/options_validation.h" | 12 #include "mojo/edk/system/options_validation.h" |
13 | 13 |
14 using mojo::platform::ScopedPlatformHandle; | 14 using mojo::platform::ScopedPlatformHandle; |
15 using mojo::util::MutexLocker; | 15 using mojo::util::MutexLocker; |
16 using mojo::util::RefPtr; | 16 using mojo::util::RefPtr; |
17 | 17 |
18 namespace mojo { | 18 namespace mojo { |
19 namespace system { | 19 namespace system { |
20 | 20 |
| 21 // static |
| 22 constexpr MojoHandleRights DataPipeProducerDispatcher::kDefaultHandleRights; |
| 23 |
21 void DataPipeProducerDispatcher::Init(RefPtr<DataPipe>&& data_pipe) { | 24 void DataPipeProducerDispatcher::Init(RefPtr<DataPipe>&& data_pipe) { |
22 DCHECK(data_pipe); | 25 DCHECK(data_pipe); |
23 data_pipe_ = std::move(data_pipe); | 26 data_pipe_ = std::move(data_pipe); |
24 } | 27 } |
25 | 28 |
26 Dispatcher::Type DataPipeProducerDispatcher::GetType() const { | 29 Dispatcher::Type DataPipeProducerDispatcher::GetType() const { |
27 return Type::DATA_PIPE_PRODUCER; | 30 return Type::DATA_PIPE_PRODUCER; |
28 } | 31 } |
29 | 32 |
30 bool DataPipeProducerDispatcher::SupportsEntrypointClass( | 33 bool DataPipeProducerDispatcher::SupportsEntrypointClass( |
(...skipping 171 matching lines...) Loading... |
202 return rv; | 205 return rv; |
203 } | 206 } |
204 | 207 |
205 bool DataPipeProducerDispatcher::IsBusyNoLock() const { | 208 bool DataPipeProducerDispatcher::IsBusyNoLock() const { |
206 mutex().AssertHeld(); | 209 mutex().AssertHeld(); |
207 return data_pipe_->ProducerIsBusy(); | 210 return data_pipe_->ProducerIsBusy(); |
208 } | 211 } |
209 | 212 |
210 } // namespace system | 213 } // namespace system |
211 } // namespace mojo | 214 } // namespace mojo |
OLD | NEW |