| 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 | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <queue> | 10 #include <queue> |
| 11 #include <string> | 11 #include <string> |
| 12 | 12 |
| 13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 14 #include "base/process.h" | 14 #include "base/process.h" |
| 15 #include "base/synchronization/waitable_event_watcher.h" | 15 #include "base/synchronization/waitable_event_watcher.h" |
| 16 #include "base/timer.h" | 16 #include "base/timer.h" |
| 17 #include "content/browser/child_process_launcher.h" | 17 #include "content/browser/child_process_launcher.h" |
| 18 #include "content/common/content_export.h" | 18 #include "content/common/content_export.h" |
| 19 #include "content/public/browser/render_process_host.h" | 19 #include "content/public/browser/render_process_host.h" |
| 20 #include "ipc/ipc_channel_proxy.h" | 20 #include "ipc/ipc_channel_proxy.h" |
| 21 #include "ui/gfx/surface/transport_dib.h" | 21 #include "ui/surface/transport_dib.h" |
| 22 | 22 |
| 23 class CommandLine; | 23 class CommandLine; |
| 24 class GpuMessageFilter; | 24 class GpuMessageFilter; |
| 25 class RendererMainThread; | 25 class RendererMainThread; |
| 26 class RenderWidgetHelper; | 26 class RenderWidgetHelper; |
| 27 | 27 |
| 28 namespace base { | 28 namespace base { |
| 29 class WaitableEvent; | 29 class WaitableEvent; |
| 30 } | 30 } |
| 31 | 31 |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 // filtering for this at the render widget level. | 261 // filtering for this at the render widget level. |
| 262 bool ignore_input_events_; | 262 bool ignore_input_events_; |
| 263 | 263 |
| 264 // Records the last time we regarded the child process active. | 264 // Records the last time we regarded the child process active. |
| 265 base::TimeTicks child_process_activity_time_; | 265 base::TimeTicks child_process_activity_time_; |
| 266 | 266 |
| 267 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); | 267 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); |
| 268 }; | 268 }; |
| 269 | 269 |
| 270 #endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ | 270 #endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ |
| OLD | NEW |