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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 void SetWebRtcLogMessageCallback( | 149 void SetWebRtcLogMessageCallback( |
150 base::Callback<void(const std::string&)> callback) override; | 150 base::Callback<void(const std::string&)> callback) override; |
151 void ClearWebRtcLogMessageCallback() override; | 151 void ClearWebRtcLogMessageCallback() override; |
152 WebRtcStopRtpDumpCallback StartRtpDump( | 152 WebRtcStopRtpDumpCallback StartRtpDump( |
153 bool incoming, | 153 bool incoming, |
154 bool outgoing, | 154 bool outgoing, |
155 const WebRtcRtpPacketCallback& packet_callback) override; | 155 const WebRtcRtpPacketCallback& packet_callback) override; |
156 #endif | 156 #endif |
157 void ResumeDeferredNavigation(const GlobalRequestID& request_id) override; | 157 void ResumeDeferredNavigation(const GlobalRequestID& request_id) override; |
158 void NotifyTimezoneChange(const std::string& timezone) override; | 158 void NotifyTimezoneChange(const std::string& timezone) override; |
159 ServiceRegistry* GetServiceRegistry() override; | 159 shell::InterfaceRegistry* GetInterfaceRegistry() override; |
| 160 shell::InterfaceProvider* GetRemoteInterfaces() override; |
160 shell::Connection* GetChildConnection() override; | 161 shell::Connection* GetChildConnection() override; |
161 std::unique_ptr<base::SharedPersistentMemoryAllocator> TakeMetricsAllocator() | 162 std::unique_ptr<base::SharedPersistentMemoryAllocator> TakeMetricsAllocator() |
162 override; | 163 override; |
163 const base::TimeTicks& GetInitTimeForNavigationMetrics() const override; | 164 const base::TimeTicks& GetInitTimeForNavigationMetrics() const override; |
164 #if defined(ENABLE_BROWSER_CDMS) | 165 #if defined(ENABLE_BROWSER_CDMS) |
165 scoped_refptr<media::MediaKeys> GetCdm(int render_frame_id, | 166 scoped_refptr<media::MediaKeys> GetCdm(int render_frame_id, |
166 int cdm_id) const override; | 167 int cdm_id) const override; |
167 #endif | 168 #endif |
168 bool IsProcessBackgrounded() const override; | 169 bool IsProcessBackgrounded() const override; |
169 void IncrementWorkerRefCount() override; | 170 void IncrementWorkerRefCount() override; |
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
522 mojo::ScopedMessagePipeHandle in_process_renderer_handle_; | 523 mojo::ScopedMessagePipeHandle in_process_renderer_handle_; |
523 | 524 |
524 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; | 525 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; |
525 | 526 |
526 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); | 527 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); |
527 }; | 528 }; |
528 | 529 |
529 } // namespace content | 530 } // namespace content |
530 | 531 |
531 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ | 532 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ |
OLD | NEW |