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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 class Size; | 48 class Size; |
49 } | 49 } |
50 | 50 |
51 namespace IPC { | 51 namespace IPC { |
52 class ChannelMojoHost; | 52 class ChannelMojoHost; |
53 } | 53 } |
54 | 54 |
55 namespace content { | 55 namespace content { |
56 class AudioInputRendererHost; | 56 class AudioInputRendererHost; |
57 class AudioRendererHost; | 57 class AudioRendererHost; |
58 class BrowserCdmManager; | |
59 class InProcessChildThreadParams; | 58 class InProcessChildThreadParams; |
60 class MessagePortMessageFilter; | 59 class MessagePortMessageFilter; |
61 class MojoChildConnection; | 60 class MojoChildConnection; |
62 class NotificationMessageFilter; | 61 class NotificationMessageFilter; |
63 #if defined(ENABLE_WEBRTC) | 62 #if defined(ENABLE_WEBRTC) |
64 class P2PSocketDispatcherHost; | 63 class P2PSocketDispatcherHost; |
65 #endif | 64 #endif |
66 class PermissionServiceContext; | 65 class PermissionServiceContext; |
67 class PeerConnectionTrackerHost; | 66 class PeerConnectionTrackerHost; |
68 class RendererMainThread; | 67 class RendererMainThread; |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 WebRtcStopRtpDumpCallback StartRtpDump( | 159 WebRtcStopRtpDumpCallback StartRtpDump( |
161 bool incoming, | 160 bool incoming, |
162 bool outgoing, | 161 bool outgoing, |
163 const WebRtcRtpPacketCallback& packet_callback) override; | 162 const WebRtcRtpPacketCallback& packet_callback) override; |
164 #endif | 163 #endif |
165 void ResumeDeferredNavigation(const GlobalRequestID& request_id) override; | 164 void ResumeDeferredNavigation(const GlobalRequestID& request_id) override; |
166 shell::InterfaceProvider* GetRemoteInterfaces() override; | 165 shell::InterfaceProvider* GetRemoteInterfaces() override; |
167 std::unique_ptr<base::SharedPersistentMemoryAllocator> TakeMetricsAllocator() | 166 std::unique_ptr<base::SharedPersistentMemoryAllocator> TakeMetricsAllocator() |
168 override; | 167 override; |
169 const base::TimeTicks& GetInitTimeForNavigationMetrics() const override; | 168 const base::TimeTicks& GetInitTimeForNavigationMetrics() const override; |
170 #if defined(ENABLE_BROWSER_CDMS) | |
171 scoped_refptr<media::MediaKeys> GetCdm(int render_frame_id, | |
172 int cdm_id) const override; | |
173 #endif | |
174 bool IsProcessBackgrounded() const override; | 169 bool IsProcessBackgrounded() const override; |
175 void IncrementServiceWorkerRefCount() override; | 170 void IncrementServiceWorkerRefCount() override; |
176 void DecrementServiceWorkerRefCount() override; | 171 void DecrementServiceWorkerRefCount() override; |
177 void IncrementSharedWorkerRefCount() override; | 172 void IncrementSharedWorkerRefCount() override; |
178 void DecrementSharedWorkerRefCount() override; | 173 void DecrementSharedWorkerRefCount() override; |
179 void ForceReleaseWorkerRefCounts() override; | 174 void ForceReleaseWorkerRefCounts() override; |
180 bool IsWorkerRefCountDisabled() override; | 175 bool IsWorkerRefCountDisabled() override; |
181 void PurgeAndSuspend() override; | 176 void PurgeAndSuspend() override; |
182 | 177 |
183 mojom::RouteProvider* GetRemoteRouteProvider(); | 178 mojom::RouteProvider* GetRemoteRouteProvider(); |
(...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
591 instance_weak_factory_; | 586 instance_weak_factory_; |
592 | 587 |
593 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; | 588 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; |
594 | 589 |
595 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); | 590 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); |
596 }; | 591 }; |
597 | 592 |
598 } // namespace content | 593 } // namespace content |
599 | 594 |
600 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ | 595 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ |
OLD | NEW |