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_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ |
7 #pragma once | |
8 | 7 |
9 #include <map> | 8 #include <map> |
10 #include <queue> | 9 #include <queue> |
11 #include <string> | 10 #include <string> |
12 | 11 |
13 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
14 #include "base/process.h" | 13 #include "base/process.h" |
15 #include "base/timer.h" | 14 #include "base/timer.h" |
16 #include "content/browser/child_process_launcher.h" | 15 #include "content/browser/child_process_launcher.h" |
17 #include "content/common/content_export.h" | 16 #include "content/common/content_export.h" |
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
277 // Indicates whether this is a RenderProcessHost of a Browser Plugin guest | 276 // Indicates whether this is a RenderProcessHost of a Browser Plugin guest |
278 // renderer. | 277 // renderer. |
279 bool is_guest_; | 278 bool is_guest_; |
280 | 279 |
281 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); | 280 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); |
282 }; | 281 }; |
283 | 282 |
284 } // namespace content | 283 } // namespace content |
285 | 284 |
286 #endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ | 285 #endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ |
OLD | NEW |