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

Unified Diff: chrome/browser/ui/browser_navigator.h

Issue 11193051: To fix the cross-site post submission bug. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Comments Created 8 years, 1 month 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: chrome/browser/ui/browser_navigator.h
diff --git a/chrome/browser/ui/browser_navigator.h b/chrome/browser/ui/browser_navigator.h
index 931c87fa0b80bf5a7375b6da091221486c4ee856..3fcc258cfe9a5f8f542b95c3536a7aefecb4265a 100644
--- a/chrome/browser/ui/browser_navigator.h
+++ b/chrome/browser/ui/browser_navigator.h
@@ -10,10 +10,15 @@
#include "chrome/browser/ui/host_desktop.h"
#include "content/public/browser/browser_context.h"
#include "content/public/browser/global_request_id.h"
+#include "content/public/common/frame_navigate_params.h"
#include "content/public/common/page_transition_types.h"
#include "content/public/common/referrer.h"
#include "googleurl/src/gurl.h"
#include "ui/gfx/rect.h"
+// chrome/browser/ui/browser_navigator.h
+// Illegal include: "webkit/glue/resource_request_body.h"
+// Because of "-webkit" from chrome's include_rules.
+//#include "webkit/glue/resource_request_body.h"
Charlie Reis 2012/11/20 05:46:03 What's the status of this?
irobert 2012/11/22 01:37:00 I did a investigation on this, but do haven't got
#include "webkit/glue/window_open_disposition.h"
class Browser;
@@ -207,6 +212,9 @@ struct NavigateParams {
// in which case it should replace the current navigation entry.
bool is_cross_site_redirect;
+ // request body
Charlie Reis 2012/11/20 05:46:03 Please elaborate in this comment.
irobert 2012/11/22 01:37:00 Done.
+ scoped_refptr<webkit_glue::ResourceRequestBody> browser_initiated_post_data;
+
private:
NavigateParams();
};

Powered by Google App Engine
This is Rietveld 408576698