| 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 AddFilter(BrowserMessageFilter* filter) override; | 150 void AddFilter(BrowserMessageFilter* filter) override; |
| 151 bool FastShutdownForPageCount(size_t count) override; | 151 bool FastShutdownForPageCount(size_t count) override; |
| 152 bool FastShutdownStarted() const override; | 152 bool FastShutdownStarted() const override; |
| 153 base::TimeDelta GetChildProcessIdleTime() const override; | 153 base::TimeDelta GetChildProcessIdleTime() const override; |
| 154 void FilterURL(bool empty_allowed, GURL* url) override; | 154 void FilterURL(bool empty_allowed, GURL* url) override; |
| 155 #if BUILDFLAG(ENABLE_WEBRTC) | 155 #if BUILDFLAG(ENABLE_WEBRTC) |
| 156 void EnableAudioDebugRecordings(const base::FilePath& file) override; | 156 void EnableAudioDebugRecordings(const base::FilePath& file) override; |
| 157 void DisableAudioDebugRecordings() override; | 157 void DisableAudioDebugRecordings() override; |
| 158 bool StartWebRTCEventLog(const base::FilePath& file_path) override; | 158 bool StartWebRTCEventLog(const base::FilePath& file_path) override; |
| 159 bool StopWebRTCEventLog() override; | 159 bool StopWebRTCEventLog() override; |
| 160 void SetEchoCanceller3(bool enable) override; |
| 160 void SetWebRtcLogMessageCallback( | 161 void SetWebRtcLogMessageCallback( |
| 161 base::Callback<void(const std::string&)> callback) override; | 162 base::Callback<void(const std::string&)> callback) override; |
| 162 void ClearWebRtcLogMessageCallback() override; | 163 void ClearWebRtcLogMessageCallback() override; |
| 163 WebRtcStopRtpDumpCallback StartRtpDump( | 164 WebRtcStopRtpDumpCallback StartRtpDump( |
| 164 bool incoming, | 165 bool incoming, |
| 165 bool outgoing, | 166 bool outgoing, |
| 166 const WebRtcRtpPacketCallback& packet_callback) override; | 167 const WebRtcRtpPacketCallback& packet_callback) override; |
| 167 #endif | 168 #endif |
| 168 void ResumeDeferredNavigation(const GlobalRequestID& request_id) override; | 169 void ResumeDeferredNavigation(const GlobalRequestID& request_id) override; |
| 169 void BindInterface(const std::string& interface_name, | 170 void BindInterface(const std::string& interface_name, |
| (...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 623 FrameSinkProviderImpl frame_sink_provider_; | 624 FrameSinkProviderImpl frame_sink_provider_; |
| 624 | 625 |
| 625 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; | 626 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; |
| 626 | 627 |
| 627 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); | 628 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); |
| 628 }; | 629 }; |
| 629 | 630 |
| 630 } // namespace content | 631 } // namespace content |
| 631 | 632 |
| 632 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ | 633 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ |
| OLD | NEW |