Index: content/public/browser/android/cdm_provision_fetcher.h |
diff --git a/content/public/browser/android/cdm_provision_fetcher.h b/content/public/browser/android/cdm_provision_fetcher.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..75f6558041c2429f1dda9bd5554430cb599ddf64 |
--- /dev/null |
+++ b/content/public/browser/android/cdm_provision_fetcher.h |
@@ -0,0 +1,32 @@ |
+// Copyright 2015 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CONTENT_PUBLIC_BROWSER_ANDROID_CDM_PROVISION_FETCHER_H |
+#define CONTENT_PUBLIC_BROWSER_ANDROID_CDM_PROVISION_FETCHER_H |
+ |
+#include "base/memory/scoped_ptr.h" |
+#include "content/common/content_export.h" |
+ |
+namespace media { |
+class ProvisionFetcher; |
+} |
+ |
+namespace net { |
+class URLRequestContextGetter; |
+} |
+ |
+namespace content { |
+ |
+// Public factory class for media::ProvisionFetcher objects. |
+ |
+class CONTENT_EXPORT CDMProvisionFetcher { |
+ public: |
+ // Factory method. |
+ static scoped_ptr<media::ProvisionFetcher> CreateWithURLContext( |
+ net::URLRequestContextGetter* context); |
+}; |
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.
|
+ |
+} // namespace content |
+ |
+#endif // CONTENT_PUBLIC_BROWSER_ANDROID_CDM_PROVISION_FETCHER_H |