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

Unified Diff: content/public/browser/page_navigator.cc

Issue 21378002: Support POST in browser navaigation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 5 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/public/browser/page_navigator.cc
===================================================================
--- content/public/browser/page_navigator.cc (revision 214769)
+++ content/public/browser/page_navigator.cc (working copy)
@@ -36,7 +36,8 @@
transition(transition),
is_renderer_initiated(is_renderer_initiated),
should_replace_current_entry(false),
- user_gesture(!is_renderer_initiated) {
+ user_gesture(!is_renderer_initiated),
+ uses_post(false) {
}
OpenURLParams::OpenURLParams()
@@ -45,7 +46,8 @@
transition(PageTransitionFromInt(0)),
is_renderer_initiated(false),
should_replace_current_entry(false),
- user_gesture(true) {
+ user_gesture(true),
+ uses_post(false) {
}
OpenURLParams::~OpenURLParams() {
« content/public/browser/page_navigator.h ('K') | « content/public/browser/page_navigator.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698