| 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 MOJO_SHELL_APP_CHILD_PROCESS_HOST_H_ | 5 #ifndef MOJO_SHELL_APP_CHILD_PROCESS_HOST_H_ |
| 6 #define MOJO_SHELL_APP_CHILD_PROCESS_HOST_H_ | 6 #define MOJO_SHELL_APP_CHILD_PROCESS_HOST_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "mojo/public/bindings/remote_ptr.h" | 9 #include "mojo/public/cpp/bindings/remote_ptr.h" |
| 10 #include "mojo/shell/app_child_process.mojom.h" | 10 #include "mojo/shell/app_child_process.mojom.h" |
| 11 #include "mojo/shell/child_process_host.h" | 11 #include "mojo/shell/child_process_host.h" |
| 12 | 12 |
| 13 namespace mojo { | 13 namespace mojo { |
| 14 | 14 |
| 15 namespace embedder { | 15 namespace embedder { |
| 16 struct ChannelInfo; | 16 struct ChannelInfo; |
| 17 } | 17 } |
| 18 | 18 |
| 19 namespace shell { | 19 namespace shell { |
| (...skipping 27 matching lines...) Expand all Loading... |
| 47 RemotePtr<mojo_shell::AppChildController> controller_; | 47 RemotePtr<mojo_shell::AppChildController> controller_; |
| 48 embedder::ChannelInfo* channel_info_; | 48 embedder::ChannelInfo* channel_info_; |
| 49 | 49 |
| 50 DISALLOW_COPY_AND_ASSIGN(AppChildProcessHost); | 50 DISALLOW_COPY_AND_ASSIGN(AppChildProcessHost); |
| 51 }; | 51 }; |
| 52 | 52 |
| 53 } // namespace shell | 53 } // namespace shell |
| 54 } // namespace mojo | 54 } // namespace mojo |
| 55 | 55 |
| 56 #endif // MOJO_SHELL_APP_CHILD_PROCESS_HOST_H_ | 56 #endif // MOJO_SHELL_APP_CHILD_PROCESS_HOST_H_ |
| OLD | NEW |