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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 virtual int GetID() const OVERRIDE; | 100 virtual int GetID() const OVERRIDE; |
101 virtual bool HasConnection() const OVERRIDE; | 101 virtual bool HasConnection() const OVERRIDE; |
102 virtual void SetIgnoreInputEvents(bool ignore_input_events) OVERRIDE; | 102 virtual void SetIgnoreInputEvents(bool ignore_input_events) OVERRIDE; |
103 virtual bool IgnoreInputEvents() const OVERRIDE; | 103 virtual bool IgnoreInputEvents() const OVERRIDE; |
104 virtual void Cleanup() OVERRIDE; | 104 virtual void Cleanup() OVERRIDE; |
105 virtual void AddPendingView() OVERRIDE; | 105 virtual void AddPendingView() OVERRIDE; |
106 virtual void RemovePendingView() OVERRIDE; | 106 virtual void RemovePendingView() OVERRIDE; |
107 virtual void SetSuddenTerminationAllowed(bool enabled) OVERRIDE; | 107 virtual void SetSuddenTerminationAllowed(bool enabled) OVERRIDE; |
108 virtual bool SuddenTerminationAllowed() const OVERRIDE; | 108 virtual bool SuddenTerminationAllowed() const OVERRIDE; |
109 virtual IPC::ChannelProxy* GetChannel() OVERRIDE; | 109 virtual IPC::ChannelProxy* GetChannel() OVERRIDE; |
| 110 virtual void AddFilter(BrowserMessageFilter* filter) OVERRIDE; |
110 virtual bool FastShutdownForPageCount(size_t count) OVERRIDE; | 111 virtual bool FastShutdownForPageCount(size_t count) OVERRIDE; |
111 virtual bool FastShutdownStarted() const OVERRIDE; | 112 virtual bool FastShutdownStarted() const OVERRIDE; |
112 virtual base::TimeDelta GetChildProcessIdleTime() const OVERRIDE; | 113 virtual base::TimeDelta GetChildProcessIdleTime() const OVERRIDE; |
113 virtual void SurfaceUpdated(int32 surface_id) OVERRIDE; | 114 virtual void SurfaceUpdated(int32 surface_id) OVERRIDE; |
114 virtual void ResumeRequestsForView(int route_id) OVERRIDE; | 115 virtual void ResumeRequestsForView(int route_id) OVERRIDE; |
115 | 116 |
116 // IPC::Sender via RenderProcessHost. | 117 // IPC::Sender via RenderProcessHost. |
117 virtual bool Send(IPC::Message* msg) OVERRIDE; | 118 virtual bool Send(IPC::Message* msg) OVERRIDE; |
118 | 119 |
119 // IPC::Listener via RenderProcessHost. | 120 // IPC::Listener via RenderProcessHost. |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
332 #if defined(OS_ANDROID) | 333 #if defined(OS_ANDROID) |
333 scoped_refptr<BrowserDemuxerAndroid> browser_demuxer_android_; | 334 scoped_refptr<BrowserDemuxerAndroid> browser_demuxer_android_; |
334 #endif | 335 #endif |
335 | 336 |
336 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); | 337 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); |
337 }; | 338 }; |
338 | 339 |
339 } // namespace content | 340 } // namespace content |
340 | 341 |
341 #endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ | 342 #endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ |
OLD | NEW |