Chromium Code Reviews| 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 { | 25 namespace base { |
| 26 class CommandLine; | |
|
jam
2016/05/03 21:33:48
nit: undo
erikchen
2016/05/03 21:49:32
Done.
| |
| 26 class FilePath; | 27 class FilePath; |
| 27 } | 28 } |
| 28 | 29 |
| 29 namespace IPC { | 30 namespace IPC { |
| 30 class MessageFilter; | 31 class MessageFilter; |
| 31 } | 32 } |
| 32 | 33 |
| 33 namespace gpu { | 34 namespace gpu { |
| 34 struct SyncToken; | 35 struct SyncToken; |
| 35 } | 36 } |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 119 // thread, we don't have a IPC::ChannelProxy and so we manage filters | 120 // thread, we don't have a IPC::ChannelProxy and so we manage filters |
| 120 // manually. | 121 // manually. |
| 121 std::vector<scoped_refptr<IPC::MessageFilter> > filters_; | 122 std::vector<scoped_refptr<IPC::MessageFilter> > filters_; |
| 122 | 123 |
| 123 DISALLOW_COPY_AND_ASSIGN(ChildProcessHostImpl); | 124 DISALLOW_COPY_AND_ASSIGN(ChildProcessHostImpl); |
| 124 }; | 125 }; |
| 125 | 126 |
| 126 } // namespace content | 127 } // namespace content |
| 127 | 128 |
| 128 #endif // CONTENT_COMMON_CHILD_PROCESS_HOST_IMPL_H_ | 129 #endif // CONTENT_COMMON_CHILD_PROCESS_HOST_IMPL_H_ |
| OLD | NEW |