Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(585)

Unified Diff: third_party/WebKit/Source/core/loader/DocumentLoader.h

Issue 2655143002: Drop replacesCurrentHistoryItem, NavigationType (Closed)
Patch Set: More compile fixes Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp ('k') | third_party/WebKit/Source/core/loader/DocumentLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698