Index: content/browser/tab_contents/page_navigator.h |
diff --git a/content/browser/tab_contents/page_navigator.h b/content/browser/tab_contents/page_navigator.h |
index 9369a7aff70d96e0ca5f0e014cfb96b606bf2f76..274310a56fa8e70d78e47579743f6f1465035ecd 100644 |
--- a/content/browser/tab_contents/page_navigator.h |
+++ b/content/browser/tab_contents/page_navigator.h |
@@ -14,6 +14,7 @@ |
#include "content/common/content_export.h" |
#include "content/public/common/page_transition_types.h" |
+#include "content/public/common/referrer.h" |
#include "googleurl/src/gurl.h" |
#include "webkit/glue/window_open_disposition.h" |
@@ -21,7 +22,7 @@ class TabContents; |
struct CONTENT_EXPORT OpenURLParams { |
OpenURLParams(const GURL& url, |
- const GURL& referrer, |
+ const content::Referrer& referrer, |
WindowOpenDisposition disposition, |
content::PageTransition transition, |
bool is_renderer_initiated); |
@@ -30,7 +31,7 @@ class TabContents; |
// The URL/referrer to be opened. |
GURL url; |
- GURL referrer; |
+ content::Referrer referrer; |
// The disposition requested by the navigation source. |
WindowOpenDisposition disposition; |