| Index: extensions/browser/guest_view/web_view/web_view_guest.h | 
| diff --git a/extensions/browser/guest_view/web_view/web_view_guest.h b/extensions/browser/guest_view/web_view/web_view_guest.h | 
| index ea7b4f6ddbf9b3c05bc1465292c503646a583279..e75b2c174cac10686b580fb193c077370e453809 100644 | 
| --- a/extensions/browser/guest_view/web_view/web_view_guest.h | 
| +++ b/extensions/browser/guest_view/web_view/web_view_guest.h | 
| @@ -23,6 +23,10 @@ namespace blink { | 
| struct WebFindOptions; | 
| }  // nanespace blink | 
|  | 
| +namespace content { | 
| +struct GlobalRequestID; | 
| +}  // namespace content | 
| + | 
| namespace extensions { | 
|  | 
| class WebViewInternalFindFunction; | 
| @@ -317,10 +321,12 @@ class WebViewGuest : public guest_view::GuestView<WebViewGuest>, | 
|  | 
| // Loads the |url| provided. |force_navigation| indicates whether to reload | 
| // the content if the provided |url| matches the current page of the guest. | 
| -  void LoadURLWithParams(const GURL& url, | 
| -                         const content::Referrer& referrer, | 
| -                         ui::PageTransition transition_type, | 
| -                         bool force_navigation); | 
| +  void LoadURLWithParams( | 
| +      const GURL& url, | 
| +      const content::Referrer& referrer, | 
| +      ui::PageTransition transition_type, | 
| +      const content::GlobalRequestID& transferred_global_request_id, | 
| +      bool force_navigation); | 
|  | 
| void RequestNewWindowPermission( | 
| WindowOpenDisposition disposition, | 
|  |