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

Side by Side Diff: content/public/browser/android/cdm_provision_fetcher.h

Issue 1427183002: Move MediaDrmBridge provision communication to native side. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: For on-demand provisioning the fetcher is created in content/ and depends on the renderer. Created 5 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
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698