| 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 <map> | 8 #include <map> |
| 9 #include <queue> | 9 #include <queue> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 void EnableAecDump(const base::FilePath& file) override; | 135 void EnableAecDump(const base::FilePath& file) override; |
| 136 void DisableAecDump() override; | 136 void DisableAecDump() override; |
| 137 void SetWebRtcLogMessageCallback( | 137 void SetWebRtcLogMessageCallback( |
| 138 base::Callback<void(const std::string&)> callback) override; | 138 base::Callback<void(const std::string&)> callback) override; |
| 139 WebRtcStopRtpDumpCallback StartRtpDump( | 139 WebRtcStopRtpDumpCallback StartRtpDump( |
| 140 bool incoming, | 140 bool incoming, |
| 141 bool outgoing, | 141 bool outgoing, |
| 142 const WebRtcRtpPacketCallback& packet_callback) override; | 142 const WebRtcRtpPacketCallback& packet_callback) override; |
| 143 #endif | 143 #endif |
| 144 void ResumeDeferredNavigation(const GlobalRequestID& request_id) override; | 144 void ResumeDeferredNavigation(const GlobalRequestID& request_id) override; |
| 145 void NotifyTimezoneChange() override; | 145 void NotifyTimezoneChange(const std::string& timezone) override; |
| 146 ServiceRegistry* GetServiceRegistry() override; | 146 ServiceRegistry* GetServiceRegistry() override; |
| 147 const base::TimeTicks& GetInitTimeForNavigationMetrics() const override; | 147 const base::TimeTicks& GetInitTimeForNavigationMetrics() const override; |
| 148 bool SubscribeUniformEnabled() const override; | 148 bool SubscribeUniformEnabled() const override; |
| 149 void OnAddSubscription(unsigned int target) override; | 149 void OnAddSubscription(unsigned int target) override; |
| 150 void OnRemoveSubscription(unsigned int target) override; | 150 void OnRemoveSubscription(unsigned int target) override; |
| 151 void SendUpdateValueState( | 151 void SendUpdateValueState( |
| 152 unsigned int target, const gpu::ValueState& state) override; | 152 unsigned int target, const gpu::ValueState& state) override; |
| 153 #if defined(ENABLE_BROWSER_CDMS) | 153 #if defined(ENABLE_BROWSER_CDMS) |
| 154 media::BrowserCdm* GetBrowserCdm(int render_frame_id, | 154 media::BrowserCdm* GetBrowserCdm(int render_frame_id, |
| 155 int cdm_id) const override; | 155 int cdm_id) const override; |
| (...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 503 bool subscribe_uniform_enabled_; | 503 bool subscribe_uniform_enabled_; |
| 504 | 504 |
| 505 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; | 505 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; |
| 506 | 506 |
| 507 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); | 507 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); |
| 508 }; | 508 }; |
| 509 | 509 |
| 510 } // namespace content | 510 } // namespace content |
| 511 | 511 |
| 512 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ | 512 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ |
| OLD | NEW |