OLD | NEW |
---|---|
(Empty) | |
1 #ifndef CONTENT_PUBLIC_BROWSER_ANDROID_CDM_PROVISION_FETCHER_H | |
2 #define CONTENT_PUBLIC_BROWSER_ANDROID_CDM_PROVISION_FETCHER_H | |
3 | |
4 #include "base/memory/scoped_ptr.h" | |
5 #include "content/common/content_export.h" | |
6 | |
7 namespace media { | |
8 class ProvisionFetcher; | |
9 } | |
10 | |
11 namespace net { | |
12 class URLRequestContextGetter; | |
13 } | |
14 | |
15 namespace content { | |
16 | |
17 // Public factory class for media::ProvisionFetcher objects. | |
18 | |
19 class CONTENT_EXPORT CDMProvisionFetcher { | |
xhwang
2015/11/06 23:08:19
See comments above. Not sure why we need this clas
Tima Vaisburd
2015/11/11 03:03:34
See my other comment about current DEPS rules.
| |
20 public: | |
21 // Factory method. | |
22 static scoped_ptr<media::ProvisionFetcher> CreateWithURLContext( | |
23 net::URLRequestContextGetter* context); | |
24 }; | |
25 | |
26 } // namespace content | |
27 | |
28 #endif // CONTENT_PUBLIC_BROWSER_ANDROID_CDM_PROVISION_FETCHER_H | |
OLD | NEW |