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

Unified Diff: content/common/view_message_enums.h

Issue 148083013: Move browser initiated navigation from RenderViewHost to RenderFrameHost. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix ASAN builds. Try 2. Created 6 years, 10 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: content/common/view_message_enums.h
diff --git a/content/common/view_message_enums.h b/content/common/view_message_enums.h
index 59a6da11b0aed6f04f35803b5ecde6422763356d..039c75f1a0345dbe305086d0d5f2020dbacaf7a2 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 AccessibilityMode {
// WebKit accessibility is off and no accessibility information is
// sent from the renderer to the browser process.

Powered by Google App Engine
This is Rietveld 408576698