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

Side by Side Diff: services/video_capture/receiver_mojo_to_media_adapter.cc

Issue 2673373003: getUserMeida: report device starting states (Closed)
Patch Set: address comments on PS#8 Created 3 years, 9 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 #include "services/video_capture/receiver_mojo_to_media_adapter.h" 5 #include "services/video_capture/receiver_mojo_to_media_adapter.h"
6 6
7 namespace video_capture { 7 namespace video_capture {
8 8
9 ReceiverMojoToMediaAdapter::ReceiverMojoToMediaAdapter( 9 ReceiverMojoToMediaAdapter::ReceiverMojoToMediaAdapter(
10 mojom::ReceiverPtr receiver) 10 mojom::ReceiverPtr receiver)
(...skipping 19 matching lines...) Expand all
30 } 30 }
31 31
32 void ReceiverMojoToMediaAdapter::OnError() { 32 void ReceiverMojoToMediaAdapter::OnError() {
33 receiver_->OnError(); 33 receiver_->OnError();
34 } 34 }
35 35
36 void ReceiverMojoToMediaAdapter::OnLog(const std::string& message) { 36 void ReceiverMojoToMediaAdapter::OnLog(const std::string& message) {
37 receiver_->OnLog(message); 37 receiver_->OnLog(message);
38 } 38 }
39 39
40 void ReceiverMojoToMediaAdapter::OnStarted() {
41 receiver_->OnStarted();
42 }
43
40 void ReceiverMojoToMediaAdapter::OnBufferRetired(int buffer_id) { 44 void ReceiverMojoToMediaAdapter::OnBufferRetired(int buffer_id) {
41 NOTIMPLEMENTED(); 45 NOTIMPLEMENTED();
42 } 46 }
43 47
44 } // namespace video_capture 48 } // namespace video_capture
OLDNEW
« no previous file with comments | « services/video_capture/receiver_mojo_to_media_adapter.h ('k') | services/video_capture/test/mock_receiver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698