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

Unified Diff: ios/clean/chrome/browser/browser_coordinator.mm

Issue 2735973003: Make BrowserCoordinator use a Browser instead of a BrowserState (Closed)
Patch Set: Remove unused import Created 3 years, 9 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/clean/chrome/browser/browser_coordinator.mm
diff --git a/ios/clean/chrome/browser/browser_coordinator.mm b/ios/clean/chrome/browser/browser_coordinator.mm
index dfe32a05ea91e7ee470ec144a613e925a88c231d..4c7af0135dd761155086e43f6fde736500bfa6e3 100644
--- a/ios/clean/chrome/browser/browser_coordinator.mm
+++ b/ios/clean/chrome/browser/browser_coordinator.mm
@@ -27,7 +27,7 @@
@implementation BrowserCoordinator
@synthesize context = _context;
-@synthesize browserState = _browserState;
+@synthesize browser = _browser;
@synthesize childCoordinators = _childCoordinators;
@synthesize parentCoordinator = _parentCoordinator;
@synthesize overlaying = _overlaying;
@@ -66,7 +66,7 @@
"property.";
[self.childCoordinators addObject:coordinator];
coordinator.parentCoordinator = self;
- coordinator.browserState = self.browserState;
+ coordinator.browser = self.browser;
coordinator.context.baseViewController = self.viewController;
}
« no previous file with comments | « ios/clean/chrome/browser/browser_coordinator.h ('k') | ios/clean/chrome/browser/browser_coordinator+internal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698