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

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

Issue 14195007: Remove media::FilterCollection::Clear() because no one calls it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « media/base/filter_collection.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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/filter_collection.h" 5 #include "media/base/filter_collection.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "media/base/audio_renderer.h" 8 #include "media/base/audio_renderer.h"
9 #include "media/base/demuxer.h" 9 #include "media/base/demuxer.h"
10 #include "media/base/video_renderer.h" 10 #include "media/base/video_renderer.h"
(...skipping 23 matching lines...) Expand all
34 34
35 void FilterCollection::SetVideoRenderer( 35 void FilterCollection::SetVideoRenderer(
36 scoped_ptr<VideoRenderer> video_renderer) { 36 scoped_ptr<VideoRenderer> video_renderer) {
37 video_renderer_ = video_renderer.Pass(); 37 video_renderer_ = video_renderer.Pass();
38 } 38 }
39 39
40 scoped_ptr<VideoRenderer> FilterCollection::GetVideoRenderer() { 40 scoped_ptr<VideoRenderer> FilterCollection::GetVideoRenderer() {
41 return video_renderer_.Pass(); 41 return video_renderer_.Pass();
42 } 42 }
43 43
44 void FilterCollection::Clear() {
45 audio_renderer_.reset();
46 video_renderer_.reset();
47 }
48
49 } // namespace media 44 } // namespace media
OLDNEW
« no previous file with comments | « media/base/filter_collection.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698