| 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 662fe8d49b112729d6db74be930905a390c26c8e..c618bc9a410285c204ffba8e26a82808928679d6 100644
|
| --- a/third_party/WebKit/Source/core/fetch/ResourceLoader.h
|
| +++ b/third_party/WebKit/Source/core/fetch/ResourceLoader.h
|
| @@ -55,7 +55,6 @@ public:
|
|
|
| void cancel();
|
| void cancel(const ResourceError&);
|
| - void cancelIfNotFinishing();
|
|
|
| Resource* cachedResource() { return m_resource.get(); }
|
|
|
| @@ -99,11 +98,8 @@ private:
|
| ConnectionStateReceivedResponse,
|
| ConnectionStateReceivingData,
|
| ConnectionStateFinishedLoading,
|
| - ConnectionStateCanceled,
|
| - ConnectionStateFailed,
|
| ConnectionStateReleased
|
| };
|
| - bool isFinishing() { return m_state >= ConnectionStateFinishedLoading && m_state <= ConnectionStateFailed; }
|
|
|
| Member<Resource> m_resource;
|
|
|
|
|