| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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> |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 const base::TimeDelta& max_delay, | 61 const base::TimeDelta& max_delay, |
| 62 IPC::Message* msg) OVERRIDE; | 62 IPC::Message* msg) OVERRIDE; |
| 63 virtual void ReceivedBadMessage() OVERRIDE; | 63 virtual void ReceivedBadMessage() OVERRIDE; |
| 64 virtual void WidgetRestored() OVERRIDE; | 64 virtual void WidgetRestored() OVERRIDE; |
| 65 virtual void WidgetHidden() OVERRIDE; | 65 virtual void WidgetHidden() OVERRIDE; |
| 66 virtual int VisibleWidgetCount() const OVERRIDE; | 66 virtual int VisibleWidgetCount() const OVERRIDE; |
| 67 virtual bool FastShutdownIfPossible() OVERRIDE; | 67 virtual bool FastShutdownIfPossible() OVERRIDE; |
| 68 virtual void DumpHandles() OVERRIDE; | 68 virtual void DumpHandles() OVERRIDE; |
| 69 virtual base::ProcessHandle GetHandle() OVERRIDE; | 69 virtual base::ProcessHandle GetHandle() OVERRIDE; |
| 70 virtual TransportDIB* GetTransportDIB(TransportDIB::Id dib_id) OVERRIDE; | 70 virtual TransportDIB* GetTransportDIB(TransportDIB::Id dib_id) OVERRIDE; |
| 71 virtual void SetCompositingSurface( | |
| 72 int render_widget_id, | |
| 73 gfx::PluginWindowHandle compositing_surface) OVERRIDE; | |
| 74 virtual content::BrowserContext* GetBrowserContext() const OVERRIDE; | 71 virtual content::BrowserContext* GetBrowserContext() const OVERRIDE; |
| 75 virtual int GetID() const OVERRIDE; | 72 virtual int GetID() const OVERRIDE; |
| 76 virtual bool HasConnection() const OVERRIDE; | 73 virtual bool HasConnection() const OVERRIDE; |
| 77 virtual IPC::Channel::Listener* GetListenerByID(int routing_id) OVERRIDE; | 74 virtual IPC::Channel::Listener* GetListenerByID(int routing_id) OVERRIDE; |
| 78 virtual void SetIgnoreInputEvents(bool ignore_input_events) OVERRIDE; | 75 virtual void SetIgnoreInputEvents(bool ignore_input_events) OVERRIDE; |
| 79 virtual bool IgnoreInputEvents() const OVERRIDE; | 76 virtual bool IgnoreInputEvents() const OVERRIDE; |
| 80 virtual void Attach(IPC::Channel::Listener* listener, int routing_id) | 77 virtual void Attach(IPC::Channel::Listener* listener, int routing_id) |
| 81 OVERRIDE; | 78 OVERRIDE; |
| 82 virtual void Release(int listener_id) OVERRIDE; | 79 virtual void Release(int listener_id) OVERRIDE; |
| 83 virtual void Cleanup() OVERRIDE; | 80 virtual void Cleanup() OVERRIDE; |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 // filtering for this at the render widget level. | 246 // filtering for this at the render widget level. |
| 250 bool ignore_input_events_; | 247 bool ignore_input_events_; |
| 251 | 248 |
| 252 // Records the last time we regarded the child process active. | 249 // Records the last time we regarded the child process active. |
| 253 base::TimeTicks child_process_activity_time_; | 250 base::TimeTicks child_process_activity_time_; |
| 254 | 251 |
| 255 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); | 252 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); |
| 256 }; | 253 }; |
| 257 | 254 |
| 258 #endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ | 255 #endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ |
| OLD | NEW |