summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/core/loader/FrameLoaderTypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/core/loader/FrameLoaderTypes.h')
-rw-r--r--chromium/third_party/WebKit/Source/core/loader/FrameLoaderTypes.h22
1 files changed, 13 insertions, 9 deletions
diff --git a/chromium/third_party/WebKit/Source/core/loader/FrameLoaderTypes.h b/chromium/third_party/WebKit/Source/core/loader/FrameLoaderTypes.h
index 5fe5d36da4f..26625b00145 100644
--- a/chromium/third_party/WebKit/Source/core/loader/FrameLoaderTypes.h
+++ b/chromium/third_party/WebKit/Source/core/loader/FrameLoaderTypes.h
@@ -66,13 +66,6 @@ enum ObjectContentType {
ObjectContentOtherPlugin
};
-enum ClearOption {
- ClearWindowProperties = 1 << 0,
- ClearScriptObjects = 1 << 1,
- ClearWindowObject = 1 << 2,
-};
-typedef int ClearOptions;
-
enum ShouldSendReferrer {
MaybeSendReferrer,
NeverSendReferrer
@@ -88,10 +81,14 @@ enum ReloadPolicy {
EndToEndReload
};
+enum LoadStartType {
+ NavigationToDifferentDocument,
+ NavigationWithinSameDocument
+};
+
enum SameDocumentNavigationSource {
SameDocumentNavigationDefault,
- SameDocumentNavigationPushState,
- SameDocumentNavigationReplaceState
+ SameDocumentNavigationHistoryApi,
};
enum ClientRedirectPolicy {
@@ -104,6 +101,13 @@ enum HistoryLoadType {
HistoryDifferentDocumentLoad
};
+enum HistoryCommitType {
+ StandardCommit,
+ BackForwardCommit,
+ InitialCommitInChildFrame,
+ HistoryInertCommit
+};
+
}
#endif