| 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/system/data_pipe_consumer_dispatcher.h" | 5 #include "mojo/edk/system/data_pipe_consumer_dispatcher.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "mojo/system/data_pipe.h" | 8 #include "mojo/edk/system/data_pipe.h" |
| 9 #include "mojo/system/memory.h" | 9 #include "mojo/edk/system/memory.h" |
| 10 | 10 |
| 11 namespace mojo { | 11 namespace mojo { |
| 12 namespace system { | 12 namespace system { |
| 13 | 13 |
| 14 DataPipeConsumerDispatcher::DataPipeConsumerDispatcher() { | 14 DataPipeConsumerDispatcher::DataPipeConsumerDispatcher() { |
| 15 } | 15 } |
| 16 | 16 |
| 17 void DataPipeConsumerDispatcher::Init(scoped_refptr<DataPipe> data_pipe) { | 17 void DataPipeConsumerDispatcher::Init(scoped_refptr<DataPipe> data_pipe) { |
| 18 DCHECK(data_pipe.get()); | 18 DCHECK(data_pipe.get()); |
| 19 data_pipe_ = data_pipe; | 19 data_pipe_ = data_pipe; |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 data_pipe_->ConsumerRemoveWaiter(waiter, signals_state); | 121 data_pipe_->ConsumerRemoveWaiter(waiter, signals_state); |
| 122 } | 122 } |
| 123 | 123 |
| 124 bool DataPipeConsumerDispatcher::IsBusyNoLock() const { | 124 bool DataPipeConsumerDispatcher::IsBusyNoLock() const { |
| 125 lock().AssertAcquired(); | 125 lock().AssertAcquired(); |
| 126 return data_pipe_->ConsumerIsBusy(); | 126 return data_pipe_->ConsumerIsBusy(); |
| 127 } | 127 } |
| 128 | 128 |
| 129 } // namespace system | 129 } // namespace system |
| 130 } // namespace mojo | 130 } // namespace mojo |
| OLD | NEW |