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> |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 virtual void AddPendingView() OVERRIDE; | 81 virtual void AddPendingView() OVERRIDE; |
82 virtual void RemovePendingView() OVERRIDE; | 82 virtual void RemovePendingView() OVERRIDE; |
83 virtual void SetSuddenTerminationAllowed(bool enabled) OVERRIDE; | 83 virtual void SetSuddenTerminationAllowed(bool enabled) OVERRIDE; |
84 virtual bool SuddenTerminationAllowed() const OVERRIDE; | 84 virtual bool SuddenTerminationAllowed() const OVERRIDE; |
85 virtual IPC::ChannelProxy* GetChannel() OVERRIDE; | 85 virtual IPC::ChannelProxy* GetChannel() OVERRIDE; |
86 virtual RenderWidgetHostsIterator GetRenderWidgetHostsIterator() OVERRIDE; | 86 virtual RenderWidgetHostsIterator GetRenderWidgetHostsIterator() OVERRIDE; |
87 virtual bool FastShutdownForPageCount(size_t count) OVERRIDE; | 87 virtual bool FastShutdownForPageCount(size_t count) OVERRIDE; |
88 virtual bool FastShutdownStarted() const OVERRIDE; | 88 virtual bool FastShutdownStarted() const OVERRIDE; |
89 virtual base::TimeDelta GetChildProcessIdleTime() const OVERRIDE; | 89 virtual base::TimeDelta GetChildProcessIdleTime() const OVERRIDE; |
90 virtual void SurfaceUpdated(int32 surface_id) OVERRIDE; | 90 virtual void SurfaceUpdated(int32 surface_id) OVERRIDE; |
| 91 virtual void ResumeRequestsForView(int route_id) OVERRIDE; |
91 | 92 |
92 // IPC::Sender via RenderProcessHost. | 93 // IPC::Sender via RenderProcessHost. |
93 virtual bool Send(IPC::Message* msg) OVERRIDE; | 94 virtual bool Send(IPC::Message* msg) OVERRIDE; |
94 | 95 |
95 // IPC::Listener via RenderProcessHost. | 96 // IPC::Listener via RenderProcessHost. |
96 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; | 97 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; |
97 virtual void OnChannelConnected(int32 peer_pid) OVERRIDE; | 98 virtual void OnChannelConnected(int32 peer_pid) OVERRIDE; |
98 virtual void OnChannelError() OVERRIDE; | 99 virtual void OnChannelError() OVERRIDE; |
99 | 100 |
100 // ChildProcessLauncher::Client implementation. | 101 // ChildProcessLauncher::Client implementation. |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
276 // Indicates whether this is a RenderProcessHost of a Browser Plugin guest | 277 // Indicates whether this is a RenderProcessHost of a Browser Plugin guest |
277 // renderer. | 278 // renderer. |
278 bool is_guest_; | 279 bool is_guest_; |
279 | 280 |
280 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); | 281 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); |
281 }; | 282 }; |
282 | 283 |
283 } // namespace content | 284 } // namespace content |
284 | 285 |
285 #endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ | 286 #endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ |
OLD | NEW |