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_BROWSER_BROWSER_CHILD_PROCESS_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_BROWSER_CHILD_PROCESS_HOST_IMPL_H_ |
6 #define CONTENT_BROWSER_BROWSER_CHILD_PROCESS_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_BROWSER_CHILD_PROCESS_HOST_IMPL_H_ |
7 #pragma once | |
8 | 7 |
9 #include <list> | 8 #include <list> |
10 | 9 |
11 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
12 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
13 #include "base/process.h" | 12 #include "base/process.h" |
14 #include "content/browser/child_process_launcher.h" | 13 #include "content/browser/child_process_launcher.h" |
15 #include "content/public/browser/browser_child_process_host.h" | 14 #include "content/public/browser/browser_child_process_host.h" |
16 #include "content/public/browser/child_process_data.h" | 15 #include "content/public/browser/child_process_data.h" |
17 #include "content/public/common/child_process_host_delegate.h" | 16 #include "content/public/common/child_process_host_delegate.h" |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 virtual void OnProcessLaunched() OVERRIDE; | 87 virtual void OnProcessLaunched() OVERRIDE; |
89 | 88 |
90 content::ChildProcessData data_; | 89 content::ChildProcessData data_; |
91 content::BrowserChildProcessHostDelegate* delegate_; | 90 content::BrowserChildProcessHostDelegate* delegate_; |
92 scoped_ptr<content::ChildProcessHost> child_process_host_; | 91 scoped_ptr<content::ChildProcessHost> child_process_host_; |
93 | 92 |
94 scoped_ptr<ChildProcessLauncher> child_process_; | 93 scoped_ptr<ChildProcessLauncher> child_process_; |
95 }; | 94 }; |
96 | 95 |
97 #endif // CONTENT_BROWSER_BROWSER_CHILD_PROCESS_HOST_IMPL_H_ | 96 #endif // CONTENT_BROWSER_BROWSER_CHILD_PROCESS_HOST_IMPL_H_ |
OLD | NEW |