| 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_RENDER_PROCESS_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 override; | 173 override; |
| 174 const base::TimeTicks& GetInitTimeForNavigationMetrics() const override; | 174 const base::TimeTicks& GetInitTimeForNavigationMetrics() const override; |
| 175 bool IsProcessBackgrounded() const override; | 175 bool IsProcessBackgrounded() const override; |
| 176 void IncrementServiceWorkerRefCount() override; | 176 void IncrementServiceWorkerRefCount() override; |
| 177 void DecrementServiceWorkerRefCount() override; | 177 void DecrementServiceWorkerRefCount() override; |
| 178 void IncrementSharedWorkerRefCount() override; | 178 void IncrementSharedWorkerRefCount() override; |
| 179 void DecrementSharedWorkerRefCount() override; | 179 void DecrementSharedWorkerRefCount() override; |
| 180 void ForceReleaseWorkerRefCounts() override; | 180 void ForceReleaseWorkerRefCounts() override; |
| 181 bool IsWorkerRefCountDisabled() override; | 181 bool IsWorkerRefCountDisabled() override; |
| 182 void PurgeAndSuspend() override; | 182 void PurgeAndSuspend() override; |
| 183 void Resume() override; |
| 183 mojom::Renderer* GetRendererInterface() override; | 184 mojom::Renderer* GetRendererInterface() override; |
| 184 | 185 |
| 185 mojom::RouteProvider* GetRemoteRouteProvider(); | 186 mojom::RouteProvider* GetRemoteRouteProvider(); |
| 186 | 187 |
| 187 // IPC::Sender via RenderProcessHost. | 188 // IPC::Sender via RenderProcessHost. |
| 188 bool Send(IPC::Message* msg) override; | 189 bool Send(IPC::Message* msg) override; |
| 189 | 190 |
| 190 // IPC::Listener via RenderProcessHost. | 191 // IPC::Listener via RenderProcessHost. |
| 191 bool OnMessageReceived(const IPC::Message& msg) override; | 192 bool OnMessageReceived(const IPC::Message& msg) override; |
| 192 void OnChannelConnected(int32_t peer_pid) override; | 193 void OnChannelConnected(int32_t peer_pid) override; |
| (...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 606 instance_weak_factory_; | 607 instance_weak_factory_; |
| 607 | 608 |
| 608 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; | 609 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; |
| 609 | 610 |
| 610 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); | 611 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); |
| 611 }; | 612 }; |
| 612 | 613 |
| 613 } // namespace content | 614 } // namespace content |
| 614 | 615 |
| 615 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ | 616 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ |
| OLD | NEW |