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

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

Issue 2469863010: Move all ProvisionFetcher classes out of android/ subdirectories. (Closed)
Patch Set: Another NON_EXPORTED_BASE. Created 4 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
« no previous file with comments | « content/public/browser/BUILD.gn ('k') | content/public/browser/provision_fetcher_factory.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_PROVISION_FETCHER_FACTORY_H
6 #define CONTENT_PUBLIC_BROWSER_ANDROID_PROVISION_FETCHER_FACTORY_H
7
8 #include <memory>
9
10 #include "content/common/content_export.h"
11
12 namespace media {
13 class ProvisionFetcher;
14 }
15
16 namespace net {
17 class URLRequestContextGetter;
18 }
19
20 namespace content {
21
22 // Factory method for media::ProvisionFetcher objects.
23
24 CONTENT_EXPORT
25 std::unique_ptr<media::ProvisionFetcher> CreateProvisionFetcher(
26 net::URLRequestContextGetter* context_getter);
27
28 } // namespace content
29
30 #endif // CONTENT_PUBLIC_BROWSER_ANDROID_PROVISION_FETCHER_FACTORY_H
OLDNEW
« no previous file with comments | « content/public/browser/BUILD.gn ('k') | content/public/browser/provision_fetcher_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698