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 9260b742fa989e8ccf3afd4524598835c84be06f..22b7115f530243ee60e7becb3034d8c6da1db82d 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,13 @@ 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); |
+ // TODO(lazyboy): Use OpenURLParams as parameter.? |
+ 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, |