| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 virtual void SimulateSwapOutACK(const ViewMsg_SwapOut_Params& params) | 70 virtual void SimulateSwapOutACK(const ViewMsg_SwapOut_Params& params) |
| 71 OVERRIDE; | 71 OVERRIDE; |
| 72 virtual bool WaitForBackingStoreMsg(int render_widget_id, | 72 virtual bool WaitForBackingStoreMsg(int render_widget_id, |
| 73 const base::TimeDelta& max_delay, | 73 const base::TimeDelta& max_delay, |
| 74 IPC::Message* msg) OVERRIDE; | 74 IPC::Message* msg) OVERRIDE; |
| 75 virtual void ReceivedBadMessage() OVERRIDE; | 75 virtual void ReceivedBadMessage() OVERRIDE; |
| 76 virtual void WidgetRestored() OVERRIDE; | 76 virtual void WidgetRestored() OVERRIDE; |
| 77 virtual void WidgetHidden() OVERRIDE; | 77 virtual void WidgetHidden() OVERRIDE; |
| 78 virtual int VisibleWidgetCount() const OVERRIDE; | 78 virtual int VisibleWidgetCount() const OVERRIDE; |
| 79 virtual bool IsGuest() const OVERRIDE; | 79 virtual bool IsGuest() const OVERRIDE; |
| 80 virtual StoragePartition* GetStoragePartition() const OVERRIDE; |
| 80 virtual bool FastShutdownIfPossible() OVERRIDE; | 81 virtual bool FastShutdownIfPossible() OVERRIDE; |
| 81 virtual void DumpHandles() OVERRIDE; | 82 virtual void DumpHandles() OVERRIDE; |
| 82 virtual base::ProcessHandle GetHandle() OVERRIDE; | 83 virtual base::ProcessHandle GetHandle() OVERRIDE; |
| 83 virtual TransportDIB* GetTransportDIB(TransportDIB::Id dib_id) OVERRIDE; | 84 virtual TransportDIB* GetTransportDIB(TransportDIB::Id dib_id) OVERRIDE; |
| 84 virtual BrowserContext* GetBrowserContext() const OVERRIDE; | 85 virtual BrowserContext* GetBrowserContext() const OVERRIDE; |
| 85 virtual bool InSameStoragePartition( | 86 virtual bool InSameStoragePartition( |
| 86 StoragePartition* partition) const OVERRIDE; | 87 StoragePartition* partition) const OVERRIDE; |
| 87 virtual int GetID() const OVERRIDE; | 88 virtual int GetID() const OVERRIDE; |
| 88 virtual bool HasConnection() const OVERRIDE; | 89 virtual bool HasConnection() const OVERRIDE; |
| 89 virtual RenderWidgetHost* GetRenderWidgetHostByID(int routing_id) | 90 virtual RenderWidgetHost* GetRenderWidgetHostByID(int routing_id) |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 // Indicates whether this is a RenderProcessHost of a Browser Plugin guest | 307 // Indicates whether this is a RenderProcessHost of a Browser Plugin guest |
| 307 // renderer. | 308 // renderer. |
| 308 bool is_guest_; | 309 bool is_guest_; |
| 309 | 310 |
| 310 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); | 311 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); |
| 311 }; | 312 }; |
| 312 | 313 |
| 313 } // namespace content | 314 } // namespace content |
| 314 | 315 |
| 315 #endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ | 316 #endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ |
| OLD | NEW |