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

Unified Diff: media/blink/webaudiosourceprovider_impl.h

Issue 2014963002: Revert of Reland: MediaCaptureFromElement: add support for audio captureStream(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/test/BUILD.gn ('k') | media/blink/webaudiosourceprovider_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/blink/webaudiosourceprovider_impl.h
diff --git a/media/blink/webaudiosourceprovider_impl.h b/media/blink/webaudiosourceprovider_impl.h
index 196d2ca90f92c3616147f6fff3d702e7305be568..6bf3b0aa9e379b9811e06598a53c97186fb74b47 100644
--- a/media/blink/webaudiosourceprovider_impl.h
+++ b/media/blink/webaudiosourceprovider_impl.h
@@ -72,14 +72,14 @@
void SetCopyAudioCallback(const CopyAudioCB& callback);
void ClearCopyAudioCallback();
- int RenderForTesting(AudioBus* audio_bus);
-
private:
friend class WebAudioSourceProviderImplTest;
~WebAudioSourceProviderImpl() override;
// Calls setFormat() on |client_| from the Blink renderer thread.
void OnSetFormat();
+
+ int RenderForTesting(AudioBus* audio_bus);
// Used to keep the volume across reconfigurations.
double volume_;
@@ -100,7 +100,7 @@
// An inner class acting as a T filter where actual data can be tapped.
class TeeFilter;
- const std::unique_ptr<TeeFilter> tee_filter_;
+ std::unique_ptr<TeeFilter> tee_filter_;
// NOTE: Weak pointers must be invalidated before all other member variables.
base::WeakPtrFactory<WebAudioSourceProviderImpl> weak_factory_;
« no previous file with comments | « content/test/BUILD.gn ('k') | media/blink/webaudiosourceprovider_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698