| 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 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <queue> | 9 #include <queue> |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/observer_list.h" | 13 #include "base/observer_list.h" |
| 14 #include "base/process/process.h" | 14 #include "base/process/process.h" |
| 15 #include "base/timer/timer.h" | 15 #include "base/timer/timer.h" |
| 16 #include "content/browser/child_process_launcher.h" | 16 #include "content/browser/child_process_launcher.h" |
| 17 #include "content/browser/dom_storage/session_storage_namespace_impl.h" | 17 #include "content/browser/dom_storage/session_storage_namespace_impl.h" |
| 18 #include "content/browser/mojo/mojo_application_host.h" | |
| 19 #include "content/browser/power_monitor_message_broadcaster.h" | 18 #include "content/browser/power_monitor_message_broadcaster.h" |
| 20 #include "content/common/content_export.h" | 19 #include "content/common/content_export.h" |
| 21 #include "content/common/mojo/service_registry_impl.h" | 20 #include "content/common/mojo/service_registry_impl.h" |
| 22 #include "content/public/browser/gpu_data_manager_observer.h" | 21 #include "content/public/browser/gpu_data_manager_observer.h" |
| 23 #include "content/public/browser/render_process_host.h" | 22 #include "content/public/browser/render_process_host.h" |
| 24 #include "ipc/ipc_channel_proxy.h" | 23 #include "ipc/ipc_channel_proxy.h" |
| 25 #include "ipc/ipc_platform_file.h" | 24 #include "ipc/ipc_platform_file.h" |
| 26 #include "mojo/public/cpp/bindings/interface_ptr.h" | 25 #include "mojo/public/cpp/bindings/interface_ptr.h" |
| 27 #include "ui/gfx/gpu_memory_buffer.h" | 26 #include "ui/gfx/gpu_memory_buffer.h" |
| 28 | 27 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 39 namespace gfx { | 38 namespace gfx { |
| 40 class Size; | 39 class Size; |
| 41 struct GpuMemoryBufferHandle; | 40 struct GpuMemoryBufferHandle; |
| 42 } | 41 } |
| 43 | 42 |
| 44 namespace content { | 43 namespace content { |
| 45 class AudioRendererHost; | 44 class AudioRendererHost; |
| 46 class BrowserDemuxerAndroid; | 45 class BrowserDemuxerAndroid; |
| 47 class GpuMessageFilter; | 46 class GpuMessageFilter; |
| 48 class MessagePortMessageFilter; | 47 class MessagePortMessageFilter; |
| 48 class MojoApplicationHost; |
| 49 #if defined(ENABLE_WEBRTC) | 49 #if defined(ENABLE_WEBRTC) |
| 50 class P2PSocketDispatcherHost; | 50 class P2PSocketDispatcherHost; |
| 51 #endif | 51 #endif |
| 52 class PeerConnectionTrackerHost; | 52 class PeerConnectionTrackerHost; |
| 53 class RendererMainThread; | 53 class RendererMainThread; |
| 54 class RenderWidgetHelper; | 54 class RenderWidgetHelper; |
| 55 class RenderWidgetHost; | 55 class RenderWidgetHost; |
| 56 class RenderWidgetHostImpl; | 56 class RenderWidgetHostImpl; |
| 57 class RenderWidgetHostViewFrameSubscriber; | 57 class RenderWidgetHostViewFrameSubscriber; |
| 58 class StoragePartition; | 58 class StoragePartition; |
| (...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 458 #if defined(OS_MACOSX) | 458 #if defined(OS_MACOSX) |
| 459 base::ScopedCFTypeRef<IOSurfaceRef> last_io_surface_; | 459 base::ScopedCFTypeRef<IOSurfaceRef> last_io_surface_; |
| 460 #endif | 460 #endif |
| 461 | 461 |
| 462 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); | 462 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); |
| 463 }; | 463 }; |
| 464 | 464 |
| 465 } // namespace content | 465 } // namespace content |
| 466 | 466 |
| 467 #endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ | 467 #endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ |
| OLD | NEW |