| 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 #ifndef CONTENT_COMMON_CHILD_PROCESS_HOST_IMPL_H_ | 5 #ifndef CONTENT_COMMON_CHILD_PROCESS_HOST_IMPL_H_ |
| 6 #define CONTENT_COMMON_CHILD_PROCESS_HOST_IMPL_H_ | 6 #define CONTENT_COMMON_CHILD_PROCESS_HOST_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| 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/shared_memory.h" | 16 #include "base/memory/shared_memory.h" |
| 17 #include "base/memory/singleton.h" | 17 #include "base/memory/singleton.h" |
| 18 #include "base/process/process.h" | 18 #include "base/process/process.h" |
| 19 #include "base/strings/string16.h" | 19 #include "base/strings/string16.h" |
| 20 #include "build/build_config.h" | 20 #include "build/build_config.h" |
| 21 #include "content/public/common/child_process_host.h" | 21 #include "content/public/common/child_process_host.h" |
| 22 #include "ipc/ipc_listener.h" | 22 #include "ipc/ipc_listener.h" |
| 23 #include "ui/gfx/gpu_memory_buffer.h" | 23 #include "ui/gfx/gpu_memory_buffer.h" |
| 24 | 24 |
| 25 namespace base { | |
| 26 class FilePath; | |
| 27 } | |
| 28 | |
| 29 namespace IPC { | 25 namespace IPC { |
| 30 class MessageFilter; | 26 class MessageFilter; |
| 31 } | 27 } |
| 32 | 28 |
| 33 namespace gpu { | 29 namespace gpu { |
| 34 struct SyncToken; | 30 struct SyncToken; |
| 35 } | 31 } |
| 36 | 32 |
| 37 namespace content { | 33 namespace content { |
| 38 class ChildProcessHostDelegate; | 34 class ChildProcessHostDelegate; |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 // thread, we don't have a IPC::ChannelProxy and so we manage filters | 121 // thread, we don't have a IPC::ChannelProxy and so we manage filters |
| 126 // manually. | 122 // manually. |
| 127 std::vector<scoped_refptr<IPC::MessageFilter> > filters_; | 123 std::vector<scoped_refptr<IPC::MessageFilter> > filters_; |
| 128 | 124 |
| 129 DISALLOW_COPY_AND_ASSIGN(ChildProcessHostImpl); | 125 DISALLOW_COPY_AND_ASSIGN(ChildProcessHostImpl); |
| 130 }; | 126 }; |
| 131 | 127 |
| 132 } // namespace content | 128 } // namespace content |
| 133 | 129 |
| 134 #endif // CONTENT_COMMON_CHILD_PROCESS_HOST_IMPL_H_ | 130 #endif // CONTENT_COMMON_CHILD_PROCESS_HOST_IMPL_H_ |
| OLD | NEW |