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_PROVISION_FETCHER_FACTORY_H |
| 6 #define CONTENT_PUBLIC_BROWSER_ANDROID_PROVISION_FETCHER_FACTORY_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 // Factory method for media::ProvisionFetcher objects. |
| 22 |
| 23 CONTENT_EXPORT |
| 24 scoped_ptr<media::ProvisionFetcher> CreateProvisionFetcher( |
| 25 net::URLRequestContextGetter* context_getter); |
| 26 |
| 27 } // namespace content |
| 28 |
| 29 #endif // CONTENT_PUBLIC_BROWSER_ANDROID_PROVISION_FETCHER_FACTORY_H |
OLD | NEW |