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

Unified Diff: media/cast/test/sender.cc

Issue 901833004: [Cast] Repurpose CastInitializationStatus for variable frame size support. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Compile fixes. Created 5 years, 10 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/cast/test/sender.cc
diff --git a/media/cast/test/sender.cc b/media/cast/test/sender.cc
index 1819df1808fc300dd73948371ff62bc0e786178f..686efa8b3f049a0561394198c4890e6974258644 100644
--- a/media/cast/test/sender.cc
+++ b/media/cast/test/sender.cc
@@ -101,10 +101,8 @@ void LogRawEvents(
}
}
-void QuitLoopOnInitializationResult(
- media::cast::CastInitializationStatus result) {
- CHECK(result == media::cast::STATUS_AUDIO_INITIALIZED ||
- result == media::cast::STATUS_VIDEO_INITIALIZED)
+void QuitLoopOnInitializationResult(media::cast::OperationalStatus result) {
+ CHECK(result == media::cast::STATUS_INITIALIZED)
<< "Cast sender uninitialized";
base::MessageLoop::current()->Quit();
}

Powered by Google App Engine
This is Rietveld 408576698