Index: ios/chrome/browser/tabs/tab.mm |
diff --git a/ios/chrome/browser/tabs/tab.mm b/ios/chrome/browser/tabs/tab.mm |
index e02faa64e867b8270b561bdff06850a9060d71c4..df4d7257560245caade537b657e713595f89d97e 100644 |
--- a/ios/chrome/browser/tabs/tab.mm |
+++ b/ios/chrome/browser/tabs/tab.mm |
@@ -1785,14 +1785,15 @@ void AddNetworkClientFactoryOnIOThread( |
} |
} |
-- (void)webDidAddPendingURL { |
+- (void)webState:(web::WebState*)webState |
+ didStartProvisionalNavigationForURL:(const GURL&)URL { |
[parentTabModel_ notifyTabChanged:self]; |
[openInController_ disable]; |
[[NSNotificationCenter defaultCenter] |
postNotificationName: |
kTabClosingCurrentDocumentNotificationForCrashReporting |
object:self]; |
- [metricsClientManager_ pageLoadStarted:self.url]; |
+ [metricsClientManager_ pageLoadStarted:URL]; |
} |
- (void)webCancelStartLoadingRequest { |