| 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 cadf2d5bcf866fdb170232b7168c9510646a1af1..712705798b1964f1eb3371f002d2dfaba73325fb 100644
|
| --- a/content/browser/tab_contents/navigation_controller.h
|
| +++ b/content/browser/tab_contents/navigation_controller.h
|
| @@ -180,6 +180,13 @@ class CONTENT_EXPORT NavigationController {
|
| 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,
|
| + content::PageTransition type,
|
| + const std::string& extra_headers);
|
| +
|
| // Loads the current page if this NavigationController was restored from
|
| // history and the current page has not loaded yet.
|
| void LoadIfNecessary();
|
| @@ -331,6 +338,7 @@ class CONTENT_EXPORT NavigationController {
|
| const GURL& url,
|
| const GURL& referrer,
|
| content::PageTransition transition,
|
| + bool is_renderer_initiated,
|
| const std::string& extra_headers,
|
| content::BrowserContext* browser_context);
|
|
|
|
|