Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Side by Side Diff: ipc/mojo/async_handle_waiter.cc

Issue 1546533002: Switch to standard integer types in ipc/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ipc/mojo/async_handle_waiter.h ('k') | ipc/mojo/async_handle_waiter_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « ipc/mojo/async_handle_waiter.h ('k') | ipc/mojo/async_handle_waiter_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698