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

Unified Diff: ios/chrome/browser/chrome_coordinator.h

Issue 2566993002: [ObjC ARC] Converts ios/chrome/browser:browser to ARC. (Closed)
Patch Set: comments Created 4 years 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 | « ios/chrome/browser/app_startup_parameters.mm ('k') | ios/chrome/browser/chrome_coordinator.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/chrome_coordinator.h
diff --git a/ios/chrome/browser/chrome_coordinator.h b/ios/chrome/browser/chrome_coordinator.h
index 1a09f736144150330818c268182dc34d54d38033..9c6a82c4c1168b59a9729faa425d4b797d56cc54 100644
--- a/ios/chrome/browser/chrome_coordinator.h
+++ b/ios/chrome/browser/chrome_coordinator.h
@@ -21,16 +21,17 @@ typedef NSMutableArray<ChromeCoordinator*> MutableCoordinatorArray;
- (nullable instancetype)init NS_UNAVAILABLE;
// Child coordinators created by this object.
-@property(nonatomic, nonnull, readonly)
+@property(strong, nonatomic, nonnull, readonly)
MutableCoordinatorArray* childCoordinators;
// The currently 'active' child coordinator, if any. By default this is the last
// coordinator in |childCoordinators|, but subclasses need not adhere to that.
-@property(nonatomic, nullable, readonly)
+@property(strong, nonatomic, nullable, readonly)
ChromeCoordinator* activeChildCoordinator;
// The view controller this coordinator was initialized with.
-@property(nonatomic, nullable, readonly) UIViewController* baseViewController;
+@property(weak, nonatomic, nullable, readonly)
+ UIViewController* baseViewController;
// The basic lifecycle methods for coordinators are -start and -stop. These
// are blank template methods; child classes are expected to implement them and
« no previous file with comments | « ios/chrome/browser/app_startup_parameters.mm ('k') | ios/chrome/browser/chrome_coordinator.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698