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

Unified Diff: services/video_capture/receiver_mojo_to_media_adapter.cc

Issue 2673373003: getUserMeida: report device starting states (Closed)
Patch Set: Created 3 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: services/video_capture/receiver_mojo_to_media_adapter.cc
diff --git a/services/video_capture/receiver_mojo_to_media_adapter.cc b/services/video_capture/receiver_mojo_to_media_adapter.cc
index 3c51cac3f104396dcd9924aa2df70377683a26bb..8844ca7cdfd4b8824a1f7f96e12935ce3f00458a 100644
--- a/services/video_capture/receiver_mojo_to_media_adapter.cc
+++ b/services/video_capture/receiver_mojo_to_media_adapter.cc
@@ -29,6 +29,10 @@ void ReceiverMojoToMediaAdapter::OnLog(const std::string& message) {
receiver_->OnLog(message);
}
+void ReceiverMojoToMediaAdapter::OnStarted() {
+ receiver_->OnStarted();
+}
+
void ReceiverMojoToMediaAdapter::OnBufferDestroyed(int buffer_id_to_drop) {
// Nothing to do here.
// This call is only needed for clients who need to explicitly share buffers

Powered by Google App Engine
This is Rietveld 408576698