OLD | NEW |
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 Loading... |
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 |
OLD | NEW |