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

Side by Side Diff: ipc/ipc_channel_proxy.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/ipc_channel_proxy.h ('k') | ipc/ipc_channel_proxy_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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/ipc_channel_proxy.h" 5 #include "ipc/ipc_channel_proxy.h"
6 6
7 #include <stddef.h>
8 #include <stdint.h>
9
7 #include "base/bind.h" 10 #include "base/bind.h"
8 #include "base/compiler_specific.h" 11 #include "base/compiler_specific.h"
9 #include "base/location.h" 12 #include "base/location.h"
10 #include "base/memory/ref_counted.h" 13 #include "base/memory/ref_counted.h"
11 #include "base/memory/scoped_ptr.h" 14 #include "base/memory/scoped_ptr.h"
12 #include "base/profiler/scoped_tracker.h" 15 #include "base/profiler/scoped_tracker.h"
13 #include "base/single_thread_task_runner.h" 16 #include "base/single_thread_task_runner.h"
14 #include "base/thread_task_runner_handle.h" 17 #include "base/thread_task_runner_handle.h"
18 #include "build/build_config.h"
15 #include "ipc/ipc_channel_factory.h" 19 #include "ipc/ipc_channel_factory.h"
16 #include "ipc/ipc_listener.h" 20 #include "ipc/ipc_listener.h"
17 #include "ipc/ipc_logging.h" 21 #include "ipc/ipc_logging.h"
18 #include "ipc/ipc_message_macros.h" 22 #include "ipc/ipc_message_macros.h"
19 #include "ipc/message_filter.h" 23 #include "ipc/message_filter.h"
20 #include "ipc/message_filter_router.h" 24 #include "ipc/message_filter_router.h"
21 25
22 namespace IPC { 26 namespace IPC {
23 27
24 //------------------------------------------------------------------------------ 28 //------------------------------------------------------------------------------
(...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after
516 return channel->TakeClientFileDescriptor(); 520 return channel->TakeClientFileDescriptor();
517 } 521 }
518 #endif 522 #endif
519 523
520 void ChannelProxy::OnChannelInit() { 524 void ChannelProxy::OnChannelInit() {
521 } 525 }
522 526
523 //----------------------------------------------------------------------------- 527 //-----------------------------------------------------------------------------
524 528
525 } // namespace IPC 529 } // namespace IPC
OLDNEW
« no previous file with comments | « ipc/ipc_channel_proxy.h ('k') | ipc/ipc_channel_proxy_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698