| Index: third_party/WebKit/Source/core/fetch/ResourceLoader.h
|
| diff --git a/third_party/WebKit/Source/core/fetch/ResourceLoader.h b/third_party/WebKit/Source/core/fetch/ResourceLoader.h
|
| index 320c896a8e68f35be43f7d2469ba7dda0077ac80..8d963c3e620103cfd5fd75eaa4836e863f3e76eb 100644
|
| --- a/third_party/WebKit/Source/core/fetch/ResourceLoader.h
|
| +++ b/third_party/WebKit/Source/core/fetch/ResourceLoader.h
|
| @@ -63,6 +63,7 @@ public:
|
|
|
| Resource* cachedResource() { return m_resource.get(); }
|
| const ResourceRequest& originalRequest() const { return m_originalRequest; }
|
| + ResourceFetcher* fetcher() { return m_fetcher; }
|
|
|
| void setDefersLoading(bool);
|
| bool defersLoading() const { return m_defersLoading; }
|
| @@ -89,8 +90,7 @@ public:
|
|
|
| bool reachedTerminalState() const { return m_state == Terminated; }
|
| const ResourceRequest& request() const { return m_request; }
|
| -
|
| - bool loadingMultipartContent() const { return m_loadingMultipartContent; }
|
| + void didFinishLoadingOnePart(double finishTime, int64_t encodedDataLength);
|
|
|
| private:
|
| // Assumes ResourceFetcher and Resource are non-null.
|
| @@ -99,8 +99,6 @@ private:
|
| void init(const ResourceRequest&);
|
| void requestSynchronously();
|
|
|
| - void didFinishLoadingOnePart(double finishTime, int64_t encodedDataLength);
|
| -
|
| bool responseNeedsAccessControlCheck() const;
|
|
|
| ResourceRequest& applyOptions(ResourceRequest&) const;
|
| @@ -114,7 +112,6 @@ private:
|
| bool m_notifiedLoadComplete;
|
|
|
| bool m_defersLoading;
|
| - bool m_loadingMultipartContent;
|
| ResourceRequest m_deferredRequest;
|
| ResourceLoaderOptions m_options;
|
|
|
|
|