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

Unified Diff: ios/web/web_state/ui/crw_web_controller.mm

Issue 2655463014: Pass the correct webState to the nativeContent. (Closed)
Patch Set: extend nativeprovider Created 3 years, 11 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
Index: ios/web/web_state/ui/crw_web_controller.mm
diff --git a/ios/web/web_state/ui/crw_web_controller.mm b/ios/web/web_state/ui/crw_web_controller.mm
index 8c572b76e476acf006966656cbf75c0ecd5d6347..9681b4963d7873aed8873a2ff00c66fa35f9fc04 100644
--- a/ios/web/web_state/ui/crw_web_controller.mm
+++ b/ios/web/web_state/ui/crw_web_controller.mm
@@ -1886,7 +1886,7 @@ const NSTimeInterval kSnapshotOverlayTransition = 0.5;
const GURL targetURL = item ? item->GetURL() : GURL::EmptyGURL();
const web::Referrer referrer;
id<CRWNativeContent> nativeContent =
- [_nativeProvider controllerForURL:targetURL];
+ [_nativeProvider controllerForURL:targetURL withWebState:self.webState];
// Unlike the WebView case, always create a new controller and view.
// TODO(pinkerton): What to do if this does return nil?
[self setNativeController:nativeContent];

Powered by Google App Engine
This is Rietveld 408576698