| Index: content/browser/appcache/appcache_subresource_url_factory.h
|
| diff --git a/content/browser/appcache/appcache_subresource_url_factory.h b/content/browser/appcache/appcache_subresource_url_factory.h
|
| index a9ab90463bc699b7d8406b0013e9dbae165039b4..ef4458e8a5129e50d466a159830a27228e0261bf 100644
|
| --- a/content/browser/appcache/appcache_subresource_url_factory.h
|
| +++ b/content/browser/appcache/appcache_subresource_url_factory.h
|
| @@ -7,7 +7,6 @@
|
|
|
| #include "base/memory/ref_counted.h"
|
| #include "base/memory/weak_ptr.h"
|
| -#include "content/common/content_export.h"
|
| #include "content/public/common/url_loader_factory.mojom.h"
|
| #include "mojo/public/cpp/bindings/binding.h"
|
| #include "net/traffic_annotation/network_traffic_annotation.h"
|
| @@ -21,8 +20,7 @@
|
| class URLLoaderFactoryGetter;
|
|
|
| // Implements the URLLoaderFactory mojom for AppCache subresource requests.
|
| -class CONTENT_EXPORT AppCacheSubresourceURLFactory
|
| - : public mojom::URLLoaderFactory {
|
| +class AppCacheSubresourceURLFactory : public mojom::URLLoaderFactory {
|
| public:
|
| ~AppCacheSubresourceURLFactory() override;
|
|
|
| @@ -55,17 +53,11 @@
|
| SyncLoadCallback callback) override;
|
|
|
| private:
|
| - friend class AppCacheNetworkServiceBrowserTest;
|
| -
|
| AppCacheSubresourceURLFactory(mojom::URLLoaderFactoryRequest request,
|
| URLLoaderFactoryGetter* factory_getter,
|
| base::WeakPtr<AppCacheHost> host);
|
|
|
| void OnConnectionError();
|
| -
|
| - // Notifies the |client| if there is a failure. The |error_code| contains the
|
| - // actual error.
|
| - void NotifyError(mojom::URLLoaderClientPtr client, int error_code);
|
|
|
| // Mojo binding.
|
| mojo::Binding<mojom::URLLoaderFactory> binding_;
|
|
|