| 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 virtual void Cleanup() OVERRIDE; | 112 virtual void Cleanup() OVERRIDE; |
| 113 virtual void AddPendingView() OVERRIDE; | 113 virtual void AddPendingView() OVERRIDE; |
| 114 virtual void RemovePendingView() OVERRIDE; | 114 virtual void RemovePendingView() OVERRIDE; |
| 115 virtual void SetSuddenTerminationAllowed(bool enabled) OVERRIDE; | 115 virtual void SetSuddenTerminationAllowed(bool enabled) OVERRIDE; |
| 116 virtual bool SuddenTerminationAllowed() const OVERRIDE; | 116 virtual bool SuddenTerminationAllowed() const OVERRIDE; |
| 117 virtual IPC::ChannelProxy* GetChannel() OVERRIDE; | 117 virtual IPC::ChannelProxy* GetChannel() OVERRIDE; |
| 118 virtual void AddFilter(BrowserMessageFilter* filter) OVERRIDE; | 118 virtual void AddFilter(BrowserMessageFilter* filter) OVERRIDE; |
| 119 virtual bool FastShutdownForPageCount(size_t count) OVERRIDE; | 119 virtual bool FastShutdownForPageCount(size_t count) OVERRIDE; |
| 120 virtual bool FastShutdownStarted() const OVERRIDE; | 120 virtual bool FastShutdownStarted() const OVERRIDE; |
| 121 virtual base::TimeDelta GetChildProcessIdleTime() const OVERRIDE; | 121 virtual base::TimeDelta GetChildProcessIdleTime() const OVERRIDE; |
| 122 virtual void SurfaceUpdated(int32 surface_id) OVERRIDE; | |
| 123 virtual void ResumeRequestsForView(int route_id) OVERRIDE; | 122 virtual void ResumeRequestsForView(int route_id) OVERRIDE; |
| 124 virtual void FilterURL(bool empty_allowed, GURL* url) OVERRIDE; | 123 virtual void FilterURL(bool empty_allowed, GURL* url) OVERRIDE; |
| 125 #if defined(ENABLE_WEBRTC) | 124 #if defined(ENABLE_WEBRTC) |
| 126 virtual void EnableAecDump(const base::FilePath& file) OVERRIDE; | 125 virtual void EnableAecDump(const base::FilePath& file) OVERRIDE; |
| 127 virtual void DisableAecDump() OVERRIDE; | 126 virtual void DisableAecDump() OVERRIDE; |
| 128 #endif | 127 #endif |
| 129 | 128 |
| 130 // IPC::Sender via RenderProcessHost. | 129 // IPC::Sender via RenderProcessHost. |
| 131 virtual bool Send(IPC::Message* msg) OVERRIDE; | 130 virtual bool Send(IPC::Message* msg) OVERRIDE; |
| 132 | 131 |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 | 391 |
| 393 // Lives on the browser's ChildThread. | 392 // Lives on the browser's ChildThread. |
| 394 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; | 393 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; |
| 395 | 394 |
| 396 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); | 395 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); |
| 397 }; | 396 }; |
| 398 | 397 |
| 399 } // namespace content | 398 } // namespace content |
| 400 | 399 |
| 401 #endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ | 400 #endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ |
| OLD | NEW |