Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(24)

Unified Diff: extensions/browser/guest_view/web_view/web_view_guest.h

Issue 1202523004: Make WebViewGuest::LoadURLWithParams also take a GlobalRequestID param. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: SYNC Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | extensions/browser/guest_view/web_view/web_view_guest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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,
« no previous file with comments | « no previous file | extensions/browser/guest_view/web_view/web_view_guest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698