| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "ipc/mojo/async_handle_waiter.h" | 5 #include "ipc/mojo/async_handle_waiter.h" |
| 6 | 6 |
| 7 #include "base/atomic_ref_count.h" | 7 #include "base/atomic_ref_count.h" |
| 8 #include "base/bind.h" | 8 #include "base/bind.h" |
| 9 #include "base/bind_helpers.h" | 9 #include "base/bind_helpers.h" |
| 10 #include "base/location.h" | 10 #include "base/location.h" |
| 11 #include "base/logging.h" | 11 #include "base/logging.h" |
| 12 #include "base/macros.h" |
| 12 #include "third_party/mojo/src/mojo/edk/embedder/embedder.h" | 13 #include "third_party/mojo/src/mojo/edk/embedder/embedder.h" |
| 13 | 14 |
| 14 namespace IPC { | 15 namespace IPC { |
| 15 namespace internal { | 16 namespace internal { |
| 16 | 17 |
| 17 class AsyncHandleWaiterContextTraits { | 18 class AsyncHandleWaiterContextTraits { |
| 18 public: | 19 public: |
| 19 static void Destruct(const AsyncHandleWaiter::Context* context); | 20 static void Destruct(const AsyncHandleWaiter::Context* context); |
| 20 }; | 21 }; |
| 21 | 22 |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 void AsyncHandleWaiterContextTraits::Destruct( | 162 void AsyncHandleWaiterContextTraits::Destruct( |
| 162 const AsyncHandleWaiter::Context* context) { | 163 const AsyncHandleWaiter::Context* context) { |
| 163 context->io_runner_->PostTask( | 164 context->io_runner_->PostTask( |
| 164 FROM_HERE, | 165 FROM_HERE, |
| 165 base::Bind(&base::DeletePointer<const AsyncHandleWaiter::Context>, | 166 base::Bind(&base::DeletePointer<const AsyncHandleWaiter::Context>, |
| 166 base::Unretained(context))); | 167 base::Unretained(context))); |
| 167 } | 168 } |
| 168 | 169 |
| 169 } // namespace internal | 170 } // namespace internal |
| 170 } // namespace IPC | 171 } // namespace IPC |
| OLD | NEW |