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

Unified Diff: media/audio/clockless_audio_sink.cc

Issue 2038053002: Change audio render thread checking to use new AudioRendererSink::BelongsToRendererThread() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Using the new BelongsTo...() function for thread checking. Created 4 years, 6 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
Index: media/audio/clockless_audio_sink.cc
diff --git a/media/audio/clockless_audio_sink.cc b/media/audio/clockless_audio_sink.cc
index 91de5e0f5ab3994ac9e7f53f2c586dc25ececc7f..27002ed2240193778a1ee816bb5e169de09a2ca5 100644
--- a/media/audio/clockless_audio_sink.cc
+++ b/media/audio/clockless_audio_sink.cc
@@ -133,6 +133,11 @@ OutputDeviceInfo ClocklessAudioSink::GetOutputDeviceInfo() {
return device_info_;
}
+bool ClocklessAudioSink::BelongsToRenderingThread() {
+ NOTIMPLEMENTED();
+ return false;
+}
+
void ClocklessAudioSink::StartAudioHashForTesting() {
DCHECK(!initialized_);
hashing_ = true;

Powered by Google App Engine
This is Rietveld 408576698