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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 virtual void Cleanup() OVERRIDE; | 109 virtual void Cleanup() OVERRIDE; |
110 virtual void AddPendingView() OVERRIDE; | 110 virtual void AddPendingView() OVERRIDE; |
111 virtual void RemovePendingView() OVERRIDE; | 111 virtual void RemovePendingView() OVERRIDE; |
112 virtual void SetSuddenTerminationAllowed(bool enabled) OVERRIDE; | 112 virtual void SetSuddenTerminationAllowed(bool enabled) OVERRIDE; |
113 virtual bool SuddenTerminationAllowed() const OVERRIDE; | 113 virtual bool SuddenTerminationAllowed() const OVERRIDE; |
114 virtual IPC::ChannelProxy* GetChannel() OVERRIDE; | 114 virtual IPC::ChannelProxy* GetChannel() OVERRIDE; |
115 virtual void AddFilter(BrowserMessageFilter* filter) OVERRIDE; | 115 virtual void AddFilter(BrowserMessageFilter* filter) OVERRIDE; |
116 virtual bool FastShutdownForPageCount(size_t count) OVERRIDE; | 116 virtual bool FastShutdownForPageCount(size_t count) OVERRIDE; |
117 virtual bool FastShutdownStarted() const OVERRIDE; | 117 virtual bool FastShutdownStarted() const OVERRIDE; |
118 virtual base::TimeDelta GetChildProcessIdleTime() const OVERRIDE; | 118 virtual base::TimeDelta GetChildProcessIdleTime() const OVERRIDE; |
119 virtual void SurfaceUpdated(int32 surface_id) OVERRIDE; | 119 virtual void OnParentGpuChannelEstablished() OVERRIDE; |
120 virtual void ResumeRequestsForView(int route_id) OVERRIDE; | 120 virtual void ResumeRequestsForView(int route_id) OVERRIDE; |
121 | 121 |
122 // IPC::Sender via RenderProcessHost. | 122 // IPC::Sender via RenderProcessHost. |
123 virtual bool Send(IPC::Message* msg) OVERRIDE; | 123 virtual bool Send(IPC::Message* msg) OVERRIDE; |
124 | 124 |
125 // IPC::Listener via RenderProcessHost. | 125 // IPC::Listener via RenderProcessHost. |
126 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; | 126 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; |
127 virtual void OnChannelConnected(int32 peer_pid) OVERRIDE; | 127 virtual void OnChannelConnected(int32 peer_pid) OVERRIDE; |
128 virtual void OnChannelError() OVERRIDE; | 128 virtual void OnChannelError() OVERRIDE; |
129 | 129 |
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
360 #if defined(OS_ANDROID) | 360 #if defined(OS_ANDROID) |
361 scoped_refptr<BrowserDemuxerAndroid> browser_demuxer_android_; | 361 scoped_refptr<BrowserDemuxerAndroid> browser_demuxer_android_; |
362 #endif | 362 #endif |
363 | 363 |
364 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); | 364 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); |
365 }; | 365 }; |
366 | 366 |
367 } // namespace content | 367 } // namespace content |
368 | 368 |
369 #endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ | 369 #endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ |
OLD | NEW |