diff options
Diffstat (limited to 'content/public/common/frame_navigate_params.h')
-rw-r--r-- | content/public/common/frame_navigate_params.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/content/public/common/frame_navigate_params.h b/content/public/common/frame_navigate_params.h index ea08b26..e4442fd 100644 --- a/content/public/common/frame_navigate_params.h +++ b/content/public/common/frame_navigate_params.h @@ -11,6 +11,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 "net/base/host_port_pair.h" #include "webkit/glue/password_form.h" @@ -40,7 +41,7 @@ struct CONTENT_EXPORT FrameNavigateParams { // URL of the referrer of this load. WebKit generates this based on the // source of the event that caused the load. - GURL referrer; + content::Referrer referrer; // The type of transition. PageTransition transition; |