| 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 8023984bd3ca67de0c614a610c35afde849951c4..ee6bc95600fd1feebe1e68a49e6d637e9cb24c2a 100644
|
| --- a/third_party/WebKit/Source/core/loader/DocumentLoader.h
|
| +++ b/third_party/WebKit/Source/core/loader/DocumentLoader.h
|
| @@ -122,12 +122,6 @@ class CORE_EXPORT DocumentLoader
|
| void setIsClientRedirect(bool isClientRedirect) {
|
| m_isClientRedirect = isClientRedirect;
|
| }
|
| - bool replacesCurrentHistoryItem() const {
|
| - return m_replacesCurrentHistoryItem;
|
| - }
|
| - void setReplacesCurrentHistoryItem(bool replacesCurrentHistoryItem) {
|
| - m_replacesCurrentHistoryItem = replacesCurrentHistoryItem;
|
| - }
|
|
|
| bool isCommittedButEmpty() const {
|
| return m_state >= Committed && !m_dataReceived;
|
| @@ -139,11 +133,6 @@ class CORE_EXPORT DocumentLoader
|
| FrameLoadType loadType() const { return m_loadType; }
|
| void setLoadType(FrameLoadType loadType) { m_loadType = loadType; }
|
|
|
| - NavigationType getNavigationType() const { return m_navigationType; }
|
| - void setNavigationType(NavigationType navigationType) {
|
| - m_navigationType = navigationType;
|
| - }
|
| -
|
| void startLoadingMainResource();
|
|
|
| DocumentLoadTiming& timing() { return m_documentLoadTiming; }
|
| @@ -266,11 +255,8 @@ class CORE_EXPORT DocumentLoader
|
| FrameLoadType m_loadType;
|
|
|
| bool m_isClientRedirect;
|
| - bool m_replacesCurrentHistoryItem;
|
| bool m_dataReceived;
|
|
|
| - NavigationType m_navigationType;
|
| -
|
| DocumentLoadTiming m_documentLoadTiming;
|
|
|
| double m_timeOfLastDataReceived;
|
|
|