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

Side by Side Diff: media/filters/file_data_source.cc

Issue 5091005: FBTF: Remove unneeded headers from base/ (part 9) (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix win build Created 10 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 | Annotate | Revision Log
« no previous file with comments | « media/filters/decoder_base.h ('k') | media/filters/null_audio_renderer.h » ('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 (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 <limits> 5 #include <limits>
6 6
7 #include "base/file_util.h" 7 #include "base/file_util.h"
8 #include "base/logging.h"
8 #include "base/utf_string_conversions.h" 9 #include "base/utf_string_conversions.h"
9 #include "media/base/filter_host.h" 10 #include "media/base/filter_host.h"
10 #include "media/base/filters.h" 11 #include "media/base/filters.h"
11 #include "media/base/pipeline.h" 12 #include "media/base/pipeline.h"
12 #include "media/filters/file_data_source.h" 13 #include "media/filters/file_data_source.h"
13 14
14 namespace media { 15 namespace media {
15 16
16 FileDataSource::FileDataSource() 17 FileDataSource::FileDataSource()
17 : file_(NULL), 18 : file_(NULL),
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 AutoLock l(lock_); 104 AutoLock l(lock_);
104 *size_out = file_size_; 105 *size_out = file_size_;
105 return (NULL != file_); 106 return (NULL != file_);
106 } 107 }
107 108
108 bool FileDataSource::IsStreaming() { 109 bool FileDataSource::IsStreaming() {
109 return false; 110 return false;
110 } 111 }
111 112
112 } // namespace media 113 } // namespace media
OLDNEW
« no previous file with comments | « media/filters/decoder_base.h ('k') | media/filters/null_audio_renderer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698