OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CONTENT_PUBLIC_BROWSER_ANDROID_CDM_PROVISION_FETCHER_H | |
6 #define CONTENT_PUBLIC_BROWSER_ANDROID_CDM_PROVISION_FETCHER_H | |
7 | |
8 #include "base/memory/scoped_ptr.h" | |
9 #include "content/common/content_export.h" | |
10 | |
11 namespace media { | |
12 class ProvisionFetcher; | |
13 } | |
14 | |
15 namespace net { | |
16 class URLRequestContextGetter; | |
17 } | |
18 | |
19 namespace content { | |
20 | |
21 // Public factory class for media::ProvisionFetcher objects. | |
22 | |
23 class CONTENT_EXPORT CDMProvisionFetcher { | |
24 public: | |
25 // Factory method. | |
26 static scoped_ptr<media::ProvisionFetcher> CreateWithURLContext( | |
27 net::URLRequestContextGetter* context); | |
28 }; | |
xhwang
2015/11/11 09:58:20
Just checked again, yes you can just use a functio
Tima Vaisburd
2015/11/11 23:26:35
Done.
| |
29 | |
30 } // namespace content | |
31 | |
32 #endif // CONTENT_PUBLIC_BROWSER_ANDROID_CDM_PROVISION_FETCHER_H | |
OLD | NEW |