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

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

Issue 2443103003: Remove unused include in sequenced_worker_pool.h (Closed)
Patch Set: merge up to r429325 Created 4 years, 1 month 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/renderers/video_overlay_factory.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/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 #include "base/single_thread_task_runner.h"
8 9
9 namespace media { 10 namespace media {
10 11
11 MediaUrlDemuxer::MediaUrlDemuxer( 12 MediaUrlDemuxer::MediaUrlDemuxer(
12 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner, 13 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner,
13 const GURL& media_url, 14 const GURL& media_url,
14 const GURL& first_party_for_cookies) 15 const GURL& first_party_for_cookies)
15 : params_{media_url, first_party_for_cookies}, task_runner_(task_runner) {} 16 : params_{media_url, first_party_for_cookies}, task_runner_(task_runner) {}
16 17
17 MediaUrlDemuxer::~MediaUrlDemuxer() {} 18 MediaUrlDemuxer::~MediaUrlDemuxer() {}
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 base::TimeDelta currTime) { 73 base::TimeDelta currTime) {
73 NOTIMPLEMENTED(); 74 NOTIMPLEMENTED();
74 } 75 }
75 void MediaUrlDemuxer::OnSelectedVideoTrackChanged( 76 void MediaUrlDemuxer::OnSelectedVideoTrackChanged(
76 const std::vector<MediaTrack::Id>& track_ids, 77 const std::vector<MediaTrack::Id>& track_ids,
77 base::TimeDelta currTime) { 78 base::TimeDelta currTime) {
78 NOTIMPLEMENTED(); 79 NOTIMPLEMENTED();
79 } 80 }
80 81
81 } // namespace media 82 } // namespace media
OLDNEW
« no previous file with comments | « media/base/media_url_demuxer.h ('k') | media/renderers/video_overlay_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698