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

Side by Side Diff: media/filters/stream_parser_factory.h

Issue 2815303006: Convert MediaLog from being ref counted to owned by WebMediaPlayer. (Closed)
Patch Set: Rebase. Created 3 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
« no previous file with comments | « media/filters/source_buffer_stream_unittest.cc ('k') | media/filters/stream_parser_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 (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 #ifndef MEDIA_FILTERS_STREAM_PARSER_FACTORY_H_ 5 #ifndef MEDIA_FILTERS_STREAM_PARSER_FACTORY_H_
6 #define MEDIA_FILTERS_STREAM_PARSER_FACTORY_H_ 6 #define MEDIA_FILTERS_STREAM_PARSER_FACTORY_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 14 matching lines...) Expand all
25 25
26 // Creates a new StreamParser object if the specified |type| and |codecs| list 26 // Creates a new StreamParser object if the specified |type| and |codecs| list
27 // are supported. |media_log| can be used to report errors if there is 27 // are supported. |media_log| can be used to report errors if there is
28 // something wrong with |type| or the codec IDs in |codecs|. 28 // something wrong with |type| or the codec IDs in |codecs|.
29 // Returns a new StreamParser object if |type| and all codecs listed in 29 // Returns a new StreamParser object if |type| and all codecs listed in
30 // |codecs| are supported. 30 // |codecs| are supported.
31 // Returns NULL otherwise. 31 // Returns NULL otherwise.
32 static std::unique_ptr<StreamParser> Create( 32 static std::unique_ptr<StreamParser> Create(
33 const std::string& type, 33 const std::string& type,
34 const std::vector<std::string>& codecs, 34 const std::vector<std::string>& codecs,
35 const scoped_refptr<MediaLog>& media_log); 35 MediaLog* media_log);
36 }; 36 };
37 37
38 } // namespace media 38 } // namespace media
39 39
40 #endif // MEDIA_FILTERS_STREAM_PARSER_FACTORY_H_ 40 #endif // MEDIA_FILTERS_STREAM_PARSER_FACTORY_H_
OLDNEW
« no previous file with comments | « media/filters/source_buffer_stream_unittest.cc ('k') | media/filters/stream_parser_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698