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

Side by Side Diff: ipc/mojo/ipc_message_pipe_reader.h

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/ipc_channel_mojo_unittest.cc ('k') | ipc/mojo/ipc_mojo_bootstrap.h » ('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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef IPC_IPC_MESSAGE_PIPE_READER_H_ 5 #ifndef IPC_IPC_MESSAGE_PIPE_READER_H_
6 #define IPC_IPC_MESSAGE_PIPE_READER_H_ 6 #define IPC_IPC_MESSAGE_PIPE_READER_H_
7 7
8 #include <stdint.h>
9
8 #include <memory> 10 #include <memory>
9 #include <vector> 11 #include <vector>
10 12
11 #include "base/atomicops.h" 13 #include "base/atomicops.h"
12 #include "base/compiler_specific.h" 14 #include "base/compiler_specific.h"
15 #include "base/macros.h"
13 #include "base/memory/scoped_ptr.h" 16 #include "base/memory/scoped_ptr.h"
14 #include "base/threading/thread_checker.h" 17 #include "base/threading/thread_checker.h"
15 #include "ipc/ipc_message.h" 18 #include "ipc/ipc_message.h"
16 #include "mojo/public/c/environment/async_waiter.h" 19 #include "mojo/public/c/environment/async_waiter.h"
17 #include "mojo/public/cpp/system/core.h" 20 #include "mojo/public/cpp/system/core.h"
18 21
19 namespace IPC { 22 namespace IPC {
20 namespace internal { 23 namespace internal {
21 24
22 class AsyncHandleWaiter; 25 class AsyncHandleWaiter;
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 base::subtle::Atomic32 pending_send_error_; 121 base::subtle::Atomic32 pending_send_error_;
119 base::ThreadChecker thread_checker_; 122 base::ThreadChecker thread_checker_;
120 123
121 DISALLOW_COPY_AND_ASSIGN(MessagePipeReader); 124 DISALLOW_COPY_AND_ASSIGN(MessagePipeReader);
122 }; 125 };
123 126
124 } // namespace internal 127 } // namespace internal
125 } // namespace IPC 128 } // namespace IPC
126 129
127 #endif // IPC_IPC_MESSAGE_PIPE_READER_H_ 130 #endif // IPC_IPC_MESSAGE_PIPE_READER_H_
OLDNEW
« no previous file with comments | « ipc/mojo/ipc_channel_mojo_unittest.cc ('k') | ipc/mojo/ipc_mojo_bootstrap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698