| OLD | NEW |
| 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_CHANNEL_MOJO_H_ | 5 #ifndef IPC_IPC_CHANNEL_MOJO_H_ |
| 6 #define IPC_IPC_CHANNEL_MOJO_H_ | 6 #define IPC_IPC_CHANNEL_MOJO_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| 11 #include <memory> | 11 #include <memory> |
| 12 #include <string> | 12 #include <string> |
| 13 #include <vector> | 13 #include <vector> |
| 14 | 14 |
| 15 #include "base/macros.h" | 15 #include "base/macros.h" |
| 16 #include "base/memory/ref_counted.h" | 16 #include "base/memory/ref_counted.h" |
| 17 #include "base/memory/scoped_vector.h" | |
| 18 #include "base/memory/weak_ptr.h" | 17 #include "base/memory/weak_ptr.h" |
| 19 #include "base/single_thread_task_runner.h" | 18 #include "base/single_thread_task_runner.h" |
| 20 #include "base/synchronization/lock.h" | 19 #include "base/synchronization/lock.h" |
| 21 #include "base/task_runner.h" | 20 #include "base/task_runner.h" |
| 22 #include "base/threading/thread_task_runner_handle.h" | 21 #include "base/threading/thread_task_runner_handle.h" |
| 23 #include "build/build_config.h" | 22 #include "build/build_config.h" |
| 24 #include "ipc/ipc.mojom.h" | 23 #include "ipc/ipc.mojom.h" |
| 25 #include "ipc/ipc_channel.h" | 24 #include "ipc/ipc_channel.h" |
| 26 #include "ipc/ipc_channel_factory.h" | 25 #include "ipc/ipc_channel_factory.h" |
| 27 #include "ipc/ipc_export.h" | 26 #include "ipc/ipc_export.h" |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 associated_interfaces_; | 128 associated_interfaces_; |
| 130 | 129 |
| 131 base::WeakPtrFactory<ChannelMojo> weak_factory_; | 130 base::WeakPtrFactory<ChannelMojo> weak_factory_; |
| 132 | 131 |
| 133 DISALLOW_COPY_AND_ASSIGN(ChannelMojo); | 132 DISALLOW_COPY_AND_ASSIGN(ChannelMojo); |
| 134 }; | 133 }; |
| 135 | 134 |
| 136 } // namespace IPC | 135 } // namespace IPC |
| 137 | 136 |
| 138 #endif // IPC_IPC_CHANNEL_MOJO_H_ | 137 #endif // IPC_IPC_CHANNEL_MOJO_H_ |
| OLD | NEW |