summaryrefslogtreecommitdiffstats
path: root/content/common/view_message_enums.h
diff options
context:
space:
mode:
authornasko@chromium.org <nasko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-02-15 08:36:36 +0000
committernasko@chromium.org <nasko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-02-15 08:36:36 +0000
commit10bea7665dbb4cdf21ac28b1a8b70848864820ed (patch)
tree1fcedcc9d61dc0b12115d9c1eced21898bcb4633 /content/common/view_message_enums.h
parent72dd41eba45c2420fcf02ba80816a92ab043c243 (diff)
downloadchromium_src-10bea7665dbb4cdf21ac28b1a8b70848864820ed.zip
chromium_src-10bea7665dbb4cdf21ac28b1a8b70848864820ed.tar.gz
chromium_src-10bea7665dbb4cdf21ac28b1a8b70848864820ed.tar.bz2
Move browser initiated navigation from RenderViewHost to RenderFrameHost.
BUG=304341 TBR=jochen@chromium.org Review URL: https://codereview.chromium.org/148083013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251563 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/view_message_enums.h')
-rw-r--r--content/common/view_message_enums.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/content/common/view_message_enums.h b/content/common/view_message_enums.h
index eb75de5..c45d5bf 100644
--- a/content/common/view_message_enums.h
+++ b/content/common/view_message_enums.h
@@ -26,33 +26,6 @@ struct ViewHostMsg_UpdateRect_Flags {
}
};
-struct ViewMsg_Navigate_Type {
- public:
- enum Value {
- // Reload the page.
- RELOAD,
-
- // Reload the page, ignoring any cache entries.
- RELOAD_IGNORING_CACHE,
-
- // Reload the page using the original request URL.
- RELOAD_ORIGINAL_REQUEST_URL,
-
- // The navigation is the result of session restore and should honor the
- // page's cache policy while restoring form state. This is set to true if
- // restoring a tab/session from the previous session and the previous
- // session did not crash. If this is not set and the page was restored then
- // the page's cache policy is ignored and we load from the cache.
- RESTORE,
-
- // Like RESTORE, except that the navigation contains POST data.
- RESTORE_WITH_POST,
-
- // Navigation type not categorized by the other types.
- NORMAL
- };
-};
-
enum AccessibilityModeFlag {
// Accessibility updates are processed to create platform trees and events are
// passed to platform APIs in the browser.