| 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 27d1a2b1804585df59badc7a12af722a2fd8cee5..7112950d7bd0216e0b61e9086dce679e3599a705 100644
|
| --- a/third_party/WebKit/Source/core/loader/DocumentLoader.h
|
| +++ b/third_party/WebKit/Source/core/loader/DocumentLoader.h
|
| @@ -93,8 +93,6 @@ public:
|
|
|
| void didChangePerformanceTiming();
|
| void updateForSameDocumentNavigation(const KURL&, SameDocumentNavigationSource);
|
| - void stopLoading();
|
| - bool isLoading() const;
|
| const ResourceResponse& response() const { return m_response; }
|
| bool isClientRedirect() const { return m_isClientRedirect; }
|
| void setIsClientRedirect(bool isClientRedirect) { m_isClientRedirect = isClientRedirect; }
|
| @@ -110,7 +108,6 @@ public:
|
| void setNavigationType(NavigationType navigationType) { m_navigationType = navigationType; }
|
|
|
| void startLoadingMainResource();
|
| - void cancelMainResourceLoad(const ResourceError&);
|
|
|
| void attachThreadedDataReceiver(PassRefPtrWillBeRawPtr<ThreadedDataReceiver>);
|
| void acceptDataFromThreadedReceiver(const char* data, int dataLength, int encodedDataLength);
|
| @@ -157,7 +154,6 @@ private:
|
| void ensureWriter(const AtomicString& mimeType, const KURL& overridingURL = KURL());
|
| void endWriting(DocumentWriter*);
|
|
|
| - Document* document() const;
|
| FrameLoader* frameLoader() const;
|
|
|
| void commitIfReady();
|
| @@ -168,7 +164,6 @@ private:
|
| bool maybeCreateArchive();
|
|
|
| void finishedLoading(double finishTime);
|
| - void mainReceivedError(const ResourceError&);
|
| void cancelLoadAfterXFrameOptionsOrCSPDenied(const ResourceResponse&);
|
| void redirectReceived(Resource*, ResourceRequest&, const ResourceResponse&) final;
|
| void responseReceived(Resource*, const ResourceResponse&, PassOwnPtr<WebDataConsumerHandle>) final;
|
|
|