| 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 bool IsProcessBackgrounded() const override; | 173 bool IsProcessBackgrounded() const override; |
| 174 void IncrementServiceWorkerRefCount() override; | 174 void IncrementServiceWorkerRefCount() override; |
| 175 void DecrementServiceWorkerRefCount() override; | 175 void DecrementServiceWorkerRefCount() override; |
| 176 void IncrementSharedWorkerRefCount() override; | 176 void IncrementSharedWorkerRefCount() override; |
| 177 void DecrementSharedWorkerRefCount() override; | 177 void DecrementSharedWorkerRefCount() override; |
| 178 void ForceReleaseWorkerRefCounts() override; | 178 void ForceReleaseWorkerRefCounts() override; |
| 179 bool IsWorkerRefCountDisabled() override; | 179 bool IsWorkerRefCountDisabled() override; |
| 180 void PurgeAndSuspend() override; | 180 void PurgeAndSuspend() override; |
| 181 void Resume() override; | 181 void Resume() override; |
| 182 mojom::Renderer* GetRendererInterface() override; | 182 mojom::Renderer* GetRendererInterface() override; |
| 183 BrowserMessageFilter* GetResourceMessageFilter() override; |
| 183 | 184 |
| 184 mojom::RouteProvider* GetRemoteRouteProvider(); | 185 mojom::RouteProvider* GetRemoteRouteProvider(); |
| 185 | 186 |
| 186 // IPC::Sender via RenderProcessHost. | 187 // IPC::Sender via RenderProcessHost. |
| 187 bool Send(IPC::Message* msg) override; | 188 bool Send(IPC::Message* msg) override; |
| 188 | 189 |
| 189 // IPC::Listener via RenderProcessHost. | 190 // IPC::Listener via RenderProcessHost. |
| 190 bool OnMessageReceived(const IPC::Message& msg) override; | 191 bool OnMessageReceived(const IPC::Message& msg) override; |
| 191 void OnChannelConnected(int32_t peer_pid) override; | 192 void OnChannelConnected(int32_t peer_pid) override; |
| 192 void OnChannelError() override; | 193 void OnChannelError() override; |
| (...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 597 instance_weak_factory_; | 598 instance_weak_factory_; |
| 598 | 599 |
| 599 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; | 600 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; |
| 600 | 601 |
| 601 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); | 602 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); |
| 602 }; | 603 }; |
| 603 | 604 |
| 604 } // namespace content | 605 } // namespace content |
| 605 | 606 |
| 606 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ | 607 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ |
| OLD | NEW |