OLD | NEW |
1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_BROWSER_APPCACHE_APPCACHE_SUBRESOURCE_URL_FACTORY_H_ | 5 #ifndef CONTENT_BROWSER_APPCACHE_APPCACHE_SUBRESOURCE_URL_FACTORY_H_ |
6 #define CONTENT_BROWSER_APPCACHE_APPCACHE_SUBRESOURCE_URL_FACTORY_H_ | 6 #define CONTENT_BROWSER_APPCACHE_APPCACHE_SUBRESOURCE_URL_FACTORY_H_ |
7 | 7 |
8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
9 #include "content/common/url_loader_factory.mojom.h" | 9 #include "content/public/common/url_loader_factory.mojom.h" |
10 #include "mojo/public/cpp/bindings/binding.h" | 10 #include "mojo/public/cpp/bindings/binding.h" |
11 #include "net/traffic_annotation/network_traffic_annotation.h" | 11 #include "net/traffic_annotation/network_traffic_annotation.h" |
12 #include "url/gurl.h" | 12 #include "url/gurl.h" |
13 | 13 |
14 namespace content { | 14 namespace content { |
15 | 15 |
16 class AppCacheJob; | 16 class AppCacheJob; |
17 class AppCacheServiceImpl; | 17 class AppCacheServiceImpl; |
18 class URLLoaderFactoryGetter; | 18 class URLLoaderFactoryGetter; |
19 | 19 |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 // Used to retrieve the network service factory to pass unhandled requests to | 57 // Used to retrieve the network service factory to pass unhandled requests to |
58 // the network service. | 58 // the network service. |
59 scoped_refptr<URLLoaderFactoryGetter> default_url_loader_factory_getter_; | 59 scoped_refptr<URLLoaderFactoryGetter> default_url_loader_factory_getter_; |
60 | 60 |
61 DISALLOW_COPY_AND_ASSIGN(AppCacheSubresourceURLFactory); | 61 DISALLOW_COPY_AND_ASSIGN(AppCacheSubresourceURLFactory); |
62 }; | 62 }; |
63 | 63 |
64 } // namespace content | 64 } // namespace content |
65 | 65 |
66 #endif // CONTENT_BROWSER_APPCACHE_APPCACHE_URL_LOADER_FACTORY_H_ | 66 #endif // CONTENT_BROWSER_APPCACHE_APPCACHE_URL_LOADER_FACTORY_H_ |
OLD | NEW |