| 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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 bool StopWebRTCEventLog() override; | 161 bool StopWebRTCEventLog() override; |
| 162 void SetWebRtcLogMessageCallback( | 162 void SetWebRtcLogMessageCallback( |
| 163 base::Callback<void(const std::string&)> callback) override; | 163 base::Callback<void(const std::string&)> callback) override; |
| 164 void ClearWebRtcLogMessageCallback() override; | 164 void ClearWebRtcLogMessageCallback() override; |
| 165 WebRtcStopRtpDumpCallback StartRtpDump( | 165 WebRtcStopRtpDumpCallback StartRtpDump( |
| 166 bool incoming, | 166 bool incoming, |
| 167 bool outgoing, | 167 bool outgoing, |
| 168 const WebRtcRtpPacketCallback& packet_callback) override; | 168 const WebRtcRtpPacketCallback& packet_callback) override; |
| 169 #endif | 169 #endif |
| 170 void ResumeDeferredNavigation(const GlobalRequestID& request_id) override; | 170 void ResumeDeferredNavigation(const GlobalRequestID& request_id) override; |
| 171 void NotifyTimezoneChange(const std::string& timezone) override; | |
| 172 shell::InterfaceProvider* GetRemoteInterfaces() override; | 171 shell::InterfaceProvider* GetRemoteInterfaces() override; |
| 173 std::unique_ptr<base::SharedPersistentMemoryAllocator> TakeMetricsAllocator() | 172 std::unique_ptr<base::SharedPersistentMemoryAllocator> TakeMetricsAllocator() |
| 174 override; | 173 override; |
| 175 const base::TimeTicks& GetInitTimeForNavigationMetrics() const override; | 174 const base::TimeTicks& GetInitTimeForNavigationMetrics() const override; |
| 176 #if defined(ENABLE_BROWSER_CDMS) | 175 #if defined(ENABLE_BROWSER_CDMS) |
| 177 scoped_refptr<media::MediaKeys> GetCdm(int render_frame_id, | 176 scoped_refptr<media::MediaKeys> GetCdm(int render_frame_id, |
| 178 int cdm_id) const override; | 177 int cdm_id) const override; |
| 179 #endif | 178 #endif |
| 180 bool IsProcessBackgrounded() const override; | 179 bool IsProcessBackgrounded() const override; |
| 181 void IncrementServiceWorkerRefCount() override; | 180 void IncrementServiceWorkerRefCount() override; |
| (...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 598 instance_weak_factory_; | 597 instance_weak_factory_; |
| 599 | 598 |
| 600 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; | 599 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; |
| 601 | 600 |
| 602 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); | 601 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); |
| 603 }; | 602 }; |
| 604 | 603 |
| 605 } // namespace content | 604 } // namespace content |
| 606 | 605 |
| 607 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ | 606 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ |
| OLD | NEW |