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

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: Simplified since we have an AndroidCdmFactory per render pid and credentials manager in chrome/ 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 // 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 };
29
30 } // namespace content
31
32 #endif // CONTENT_PUBLIC_BROWSER_ANDROID_CDM_PROVISION_FETCHER_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698