| 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_PUBLIC_COMMON_CHILD_PROCESS_HOST_H_ | 5 #ifndef CONTENT_PUBLIC_COMMON_CHILD_PROCESS_HOST_H_ |
| 6 #define CONTENT_PUBLIC_COMMON_CHILD_PROCESS_HOST_H_ | 6 #define CONTENT_PUBLIC_COMMON_CHILD_PROCESS_HOST_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "base/files/scoped_file.h" | 10 #include "base/files/scoped_file.h" |
| 11 #include "build/build_config.h" | 11 #include "build/build_config.h" |
| 12 #include "content/common/content_export.h" | 12 #include "content/common/content_export.h" |
| 13 #include "ipc/attachment_broker_privileged.h" | |
| 14 #include "ipc/ipc_channel_proxy.h" | 13 #include "ipc/ipc_channel_proxy.h" |
| 15 | 14 |
| 16 namespace base { | 15 namespace base { |
| 17 class FilePath; | 16 class FilePath; |
| 18 } | 17 } |
| 19 | 18 |
| 20 namespace IPC { | 19 namespace IPC { |
| 21 class MessageFilter; | 20 class MessageFilter; |
| 22 } | 21 } |
| 23 | 22 |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 | 104 |
| 106 #if defined(OS_POSIX) | 105 #if defined(OS_POSIX) |
| 107 // See IPC::Channel::TakeClientFileDescriptor. | 106 // See IPC::Channel::TakeClientFileDescriptor. |
| 108 virtual base::ScopedFD TakeClientFileDescriptor() = 0; | 107 virtual base::ScopedFD TakeClientFileDescriptor() = 0; |
| 109 #endif | 108 #endif |
| 110 }; | 109 }; |
| 111 | 110 |
| 112 }; // namespace content | 111 }; // namespace content |
| 113 | 112 |
| 114 #endif // CONTENT_PUBLIC_COMMON_CHILD_PROCESS_HOST_H_ | 113 #endif // CONTENT_PUBLIC_COMMON_CHILD_PROCESS_HOST_H_ |
| OLD | NEW |