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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 void ClearWebRtcLogMessageCallback() override; | 150 void ClearWebRtcLogMessageCallback() override; |
151 WebRtcStopRtpDumpCallback StartRtpDump( | 151 WebRtcStopRtpDumpCallback StartRtpDump( |
152 bool incoming, | 152 bool incoming, |
153 bool outgoing, | 153 bool outgoing, |
154 const WebRtcRtpPacketCallback& packet_callback) override; | 154 const WebRtcRtpPacketCallback& packet_callback) override; |
155 #endif | 155 #endif |
156 void ResumeDeferredNavigation(const GlobalRequestID& request_id) override; | 156 void ResumeDeferredNavigation(const GlobalRequestID& request_id) override; |
157 void NotifyTimezoneChange(const std::string& timezone) override; | 157 void NotifyTimezoneChange(const std::string& timezone) override; |
158 shell::InterfaceRegistry* GetInterfaceRegistry() override; | 158 shell::InterfaceRegistry* GetInterfaceRegistry() override; |
159 shell::InterfaceProvider* GetRemoteInterfaces() override; | 159 shell::InterfaceProvider* GetRemoteInterfaces() override; |
| 160 shell::Connection* GetChildConnection() override; |
160 std::unique_ptr<base::SharedPersistentMemoryAllocator> TakeMetricsAllocator() | 161 std::unique_ptr<base::SharedPersistentMemoryAllocator> TakeMetricsAllocator() |
161 override; | 162 override; |
162 const base::TimeTicks& GetInitTimeForNavigationMetrics() const override; | 163 const base::TimeTicks& GetInitTimeForNavigationMetrics() const override; |
163 #if defined(ENABLE_BROWSER_CDMS) | 164 #if defined(ENABLE_BROWSER_CDMS) |
164 scoped_refptr<media::MediaKeys> GetCdm(int render_frame_id, | 165 scoped_refptr<media::MediaKeys> GetCdm(int render_frame_id, |
165 int cdm_id) const override; | 166 int cdm_id) const override; |
166 #endif | 167 #endif |
167 bool IsProcessBackgrounded() const override; | 168 bool IsProcessBackgrounded() const override; |
168 void IncrementWorkerRefCount() override; | 169 void IncrementWorkerRefCount() override; |
169 void DecrementWorkerRefCount() override; | 170 void DecrementWorkerRefCount() override; |
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
510 mojo::ScopedMessagePipeHandle in_process_renderer_handle_; | 511 mojo::ScopedMessagePipeHandle in_process_renderer_handle_; |
511 | 512 |
512 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; | 513 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; |
513 | 514 |
514 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); | 515 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); |
515 }; | 516 }; |
516 | 517 |
517 } // namespace content | 518 } // namespace content |
518 | 519 |
519 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ | 520 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ |
OLD | NEW |