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

Side by Side Diff: media/base/media_url_demuxer.cc

Issue 2230583002: Add MediaPlayerRenderer/MediaPlayerRendererClient (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added MEDIA_EXPORT. Created 4 years, 4 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 | « media/base/media_url_demuxer.h ('k') | media/base/media_url_demuxer_unittest.cc » ('j') | 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 "media/base/android/media_url_demuxer.h" 5 #include "media/base/media_url_demuxer.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 8
9 namespace media { 9 namespace media {
10 10
11 MediaUrlDemuxer::MediaUrlDemuxer( 11 MediaUrlDemuxer::MediaUrlDemuxer(
12 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner, 12 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner,
13 const GURL& url) 13 const GURL& url)
14 : url_(url), task_runner_(task_runner) {} 14 : url_(url), task_runner_(task_runner) {}
15 15
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 base::TimeDelta currTime) { 69 base::TimeDelta currTime) {
70 NOTIMPLEMENTED(); 70 NOTIMPLEMENTED();
71 } 71 }
72 void MediaUrlDemuxer::OnSelectedVideoTrackChanged( 72 void MediaUrlDemuxer::OnSelectedVideoTrackChanged(
73 const std::vector<MediaTrack::Id>& track_ids, 73 const std::vector<MediaTrack::Id>& track_ids,
74 base::TimeDelta currTime) { 74 base::TimeDelta currTime) {
75 NOTIMPLEMENTED(); 75 NOTIMPLEMENTED();
76 } 76 }
77 77
78 } // namespace media 78 } // namespace media
OLDNEW
« no previous file with comments | « media/base/media_url_demuxer.h ('k') | media/base/media_url_demuxer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698