Index: content/public/browser/android/provision_fetcher_factory.h |
diff --git a/content/public/browser/android/provision_fetcher_factory.h b/content/public/browser/android/provision_fetcher_factory.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..1d9821bbed973230236fb5abaa8562a191d31654 |
--- /dev/null |
+++ b/content/public/browser/android/provision_fetcher_factory.h |
@@ -0,0 +1,29 @@ |
+// 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_PROVISION_FETCHER_FACTORY_H |
+#define CONTENT_PUBLIC_BROWSER_ANDROID_PROVISION_FETCHER_FACTORY_H |
+ |
+#include "base/memory/scoped_ptr.h" |
+#include "content/common/content_export.h" |
+ |
+namespace media { |
+class ProvisionFetcher; |
+} |
+ |
+namespace net { |
+class URLRequestContextGetter; |
+} |
+ |
+namespace content { |
+ |
+// Factory method for media::ProvisionFetcher objects. |
+ |
+CONTENT_EXPORT |
+scoped_ptr<media::ProvisionFetcher> CreateProvisionFetcher( |
+ net::URLRequestContextGetter* context_getter); |
+ |
+} // namespace content |
+ |
+#endif // CONTENT_PUBLIC_BROWSER_ANDROID_PROVISION_FETCHER_FACTORY_H |