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

Side by Side Diff: media/base/filter_factories.h

Issue 6985009: iwyu: Use callback_old.h where appropriate, part 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 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/callback.h ('k') | media/base/filters.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_BASE_FILTER_FACTORIES_H_ 5 #ifndef MEDIA_BASE_FILTER_FACTORIES_H_
6 #define MEDIA_BASE_FILTER_FACTORIES_H_ 6 #define MEDIA_BASE_FILTER_FACTORIES_H_
7 7
8 #include<string> 8 #include<string>
9 9
10 #include "base/callback.h" 10 #include "base/callback_old.h"
11 #include "media/base/pipeline_status.h" 11 #include "media/base/pipeline_status.h"
12 12
13 namespace media { 13 namespace media {
14 14
15 class DataSource; 15 class DataSource;
16 16
17 // Asynchronous factory interface for building DataSource objects. 17 // Asynchronous factory interface for building DataSource objects.
18 class DataSourceFactory { 18 class DataSourceFactory {
19 public: 19 public:
20 // Ownership of the DataSource is transferred through this callback. 20 // Ownership of the DataSource is transferred through this callback.
(...skipping 23 matching lines...) Expand all
44 virtual void Build(const std::string& url, BuildCallback* callback) = 0; 44 virtual void Build(const std::string& url, BuildCallback* callback) = 0;
45 45
46 // Makes a copy of this factory. 46 // Makes a copy of this factory.
47 // NOTE: Pending requests are not cloned. 47 // NOTE: Pending requests are not cloned.
48 virtual DemuxerFactory* Clone() const = 0; 48 virtual DemuxerFactory* Clone() const = 0;
49 }; 49 };
50 50
51 } // namespace media 51 } // namespace media
52 52
53 #endif // MEDIA_BASE_FILTER_FACTORIES_H_ 53 #endif // MEDIA_BASE_FILTER_FACTORIES_H_
OLDNEW
« no previous file with comments | « media/base/callback.h ('k') | media/base/filters.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698