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

Unified Diff: ios/chrome/browser/tabs/tab.mm

Issue 2654363002: ios: Fix constructor call (Closed)
Patch Set: 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/tabs/tab.mm
diff --git a/ios/chrome/browser/tabs/tab.mm b/ios/chrome/browser/tabs/tab.mm
index 0311badb922854aabe31f42651d6782f1b12edb8..b16a1580bf11c6d7684f2904a254a5731df36497 100644
--- a/ios/chrome/browser/tabs/tab.mm
+++ b/ios/chrome/browser/tabs/tab.mm
@@ -1762,8 +1762,7 @@ - (void)webState:(web::WebState*)webState
[self recordInterfaceOrientation];
navigation_metrics::OriginsSeenService* originsSeenService =
IOSChromeOriginsSeenServiceFactory::GetForBrowserState(self.browserState);
- bool alreadySeen =
- originsSeenService->Insert(url::Origin::Origin(lastCommittedURL));
+ bool alreadySeen = originsSeenService->Insert(url::Origin(lastCommittedURL));
navigation_metrics::RecordMainFrameNavigation(
lastCommittedURL, true, self.browserState->IsOffTheRecord(), alreadySeen);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698