| 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/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/system/data_pipe.h" |
| 9 #include "mojo/system/memory.h" | 9 #include "mojo/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; |
| 20 } | 20 } |
| 21 | 21 |
| 22 Dispatcher::Type DataPipeConsumerDispatcher::GetType() { |
| 23 return kTypeDataPipeConsumer; |
| 24 } |
| 25 |
| 22 DataPipeConsumerDispatcher::~DataPipeConsumerDispatcher() { | 26 DataPipeConsumerDispatcher::~DataPipeConsumerDispatcher() { |
| 23 // |Close()|/|CloseImplNoLock()| should have taken care of the pipe. | 27 // |Close()|/|CloseImplNoLock()| should have taken care of the pipe. |
| 24 DCHECK(!data_pipe_.get()); | 28 DCHECK(!data_pipe_.get()); |
| 25 } | 29 } |
| 26 | 30 |
| 27 void DataPipeConsumerDispatcher::CancelAllWaitersNoLock() { | 31 void DataPipeConsumerDispatcher::CancelAllWaitersNoLock() { |
| 28 lock().AssertAcquired(); | 32 lock().AssertAcquired(); |
| 29 data_pipe_->ConsumerCancelAllWaiters(); | 33 data_pipe_->ConsumerCancelAllWaiters(); |
| 30 } | 34 } |
| 31 | 35 |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 | 122 |
| 119 scoped_refptr<DataPipeConsumerDispatcher> rv = | 123 scoped_refptr<DataPipeConsumerDispatcher> rv = |
| 120 new DataPipeConsumerDispatcher(); | 124 new DataPipeConsumerDispatcher(); |
| 121 rv->Init(data_pipe_); | 125 rv->Init(data_pipe_); |
| 122 data_pipe_ = NULL; | 126 data_pipe_ = NULL; |
| 123 return scoped_refptr<Dispatcher>(rv.get()); | 127 return scoped_refptr<Dispatcher>(rv.get()); |
| 124 } | 128 } |
| 125 | 129 |
| 126 } // namespace system | 130 } // namespace system |
| 127 } // namespace mojo | 131 } // namespace mojo |
| OLD | NEW |