| 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; | |
| 161 std::unique_ptr<base::SharedPersistentMemoryAllocator> TakeMetricsAllocator() | 160 std::unique_ptr<base::SharedPersistentMemoryAllocator> TakeMetricsAllocator() |
| 162 override; | 161 override; |
| 163 const base::TimeTicks& GetInitTimeForNavigationMetrics() const override; | 162 const base::TimeTicks& GetInitTimeForNavigationMetrics() const override; |
| 164 #if defined(ENABLE_BROWSER_CDMS) | 163 #if defined(ENABLE_BROWSER_CDMS) |
| 165 scoped_refptr<media::MediaKeys> GetCdm(int render_frame_id, | 164 scoped_refptr<media::MediaKeys> GetCdm(int render_frame_id, |
| 166 int cdm_id) const override; | 165 int cdm_id) const override; |
| 167 #endif | 166 #endif |
| 168 bool IsProcessBackgrounded() const override; | 167 bool IsProcessBackgrounded() const override; |
| 169 void IncrementWorkerRefCount() override; | 168 void IncrementWorkerRefCount() override; |
| 170 void DecrementWorkerRefCount() override; | 169 void DecrementWorkerRefCount() override; |
| (...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 522 mojo::ScopedMessagePipeHandle in_process_renderer_handle_; | 521 mojo::ScopedMessagePipeHandle in_process_renderer_handle_; |
| 523 | 522 |
| 524 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; | 523 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; |
| 525 | 524 |
| 526 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); | 525 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); |
| 527 }; | 526 }; |
| 528 | 527 |
| 529 } // namespace content | 528 } // namespace content |
| 530 | 529 |
| 531 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ | 530 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ |
| OLD | NEW |