| Index: third_party/WebKit/Source/core/loader/DocumentLoader.h
|
| diff --git a/third_party/WebKit/Source/core/loader/DocumentLoader.h b/third_party/WebKit/Source/core/loader/DocumentLoader.h
|
| index bc595de4a9ce9a3b7ec1b68208ca2c6a2902305c..ff2d37547b0fe72e0c72db1d8906ea6be68677c3 100644
|
| --- a/third_party/WebKit/Source/core/loader/DocumentLoader.h
|
| +++ b/third_party/WebKit/Source/core/loader/DocumentLoader.h
|
| @@ -42,7 +42,6 @@
|
| #include "core/loader/DocumentWriter.h"
|
| #include "core/loader/FrameLoaderTypes.h"
|
| #include "core/loader/NavigationPolicy.h"
|
| -#include "core/loader/appcache/ApplicationCacheHost.h"
|
| #include "platform/SharedBuffer.h"
|
| #include "platform/network/ResourceError.h"
|
| #include "platform/network/ResourceRequest.h"
|
| @@ -52,6 +51,7 @@
|
|
|
| namespace blink {
|
|
|
| +class ApplicationCacheHost;
|
| class ResourceFetcher;
|
| class DocumentInit;
|
| class LocalFrame;
|
| @@ -83,7 +83,7 @@ public:
|
|
|
| const ResourceRequest& request() const;
|
|
|
| - ResourceFetcher* fetcher() const;
|
| + ResourceFetcher* fetcher() const { return m_fetcher.get(); }
|
|
|
| const SubstituteData& substituteData() const { return m_substituteData; }
|
|
|
|
|