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

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

Issue 2735083002: [Mojo Video Capture] Add test coverage for accelerated jpeg decoding (Closed)
Patch Set: Rebase to March 15th, Remove #include jpeg_parser 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
« no previous file with comments | « services/video_capture/receiver_mojo_to_media_adapter.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 23 matching lines...) Expand all
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() { 40 void ReceiverMojoToMediaAdapter::OnStarted() {
41 receiver_->OnStarted(); 41 receiver_->OnStarted();
42 } 42 }
43 43
44 void ReceiverMojoToMediaAdapter::OnStartedUsingGpuDecode() {
45 NOTIMPLEMENTED();
46 }
47
44 void ReceiverMojoToMediaAdapter::OnBufferRetired(int buffer_id) { 48 void ReceiverMojoToMediaAdapter::OnBufferRetired(int buffer_id) {
45 NOTIMPLEMENTED(); 49 NOTIMPLEMENTED();
46 } 50 }
47 51
48 } // namespace video_capture 52 } // namespace video_capture
OLDNEW
« no previous file with comments | « services/video_capture/receiver_mojo_to_media_adapter.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698