| Index: content/browser/tab_contents/navigation_controller.h
|
| diff --git a/content/browser/tab_contents/navigation_controller.h b/content/browser/tab_contents/navigation_controller.h
|
| index 1e8096df6ea1d0b6b7679191ed768ce9863e0291..3bc64fd9b47837c1d9342a735f0fc7ee2f3d6ae8 100644
|
| --- a/content/browser/tab_contents/navigation_controller.h
|
| +++ b/content/browser/tab_contents/navigation_controller.h
|
| @@ -19,6 +19,7 @@
|
| #include "content/common/content_export.h"
|
| #include "content/public/browser/navigation_type.h"
|
| #include "content/public/common/page_transition_types.h"
|
| +#include "content/public/common/referrer.h"
|
|
|
| class NavigationEntry;
|
| class SessionStorageNamespace;
|
| @@ -177,14 +178,14 @@ class CONTENT_EXPORT NavigationController {
|
| // Loads the specified URL, specifying extra http headers to add to the
|
| // request. Extra headers are separated by \n.
|
| void LoadURL(const GURL& url,
|
| - const GURL& referrer,
|
| + const content::Referrer& referrer,
|
| content::PageTransition type,
|
| const std::string& extra_headers);
|
|
|
| // Same as LoadURL, but for renderer-initiated navigations. This state is
|
| // important for tracking whether to display pending URLs.
|
| void LoadURLFromRenderer(const GURL& url,
|
| - const GURL& referrer,
|
| + const content::Referrer& referrer,
|
| content::PageTransition type,
|
| const std::string& extra_headers);
|
|
|
|
|