Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Side by Side Diff: content/browser/renderer_host/render_process_host_impl.h

Issue 2801853005: Create a private API for controlling WebRTC's AEC3 (Closed)
Patch Set: Fixing typo Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/webrtc_audio_private.idl ('k') | content/browser/renderer_host/render_process_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698