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

Unified Diff: ios/chrome/browser/ui/browser_view_controller.h

Issue 2798903003: [ObjC ARC] Converts ios/chrome/browser/ui:ui_internal to ARC. (Closed)
Patch Set: missing weaks from another patch Created 3 years, 8 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 | « ios/chrome/browser/ui/browser_container_view.mm ('k') | ios/chrome/browser/ui/browser_view_controller.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/ui/browser_view_controller.h
diff --git a/ios/chrome/browser/ui/browser_view_controller.h b/ios/chrome/browser/ui/browser_view_controller.h
index 4b004dd150465132e623ece475fc0fd4b5a1d6bb..2870f45c4815db344224d9442aabda8836fc86a1 100644
--- a/ios/chrome/browser/ui/browser_view_controller.h
+++ b/ios/chrome/browser/ui/browser_view_controller.h
@@ -72,10 +72,10 @@ extern NSString* const kLocationBarResignsFirstResponderNotification;
- (instancetype)initWithCoder:(NSCoder*)aDecoder NS_UNAVAILABLE;
// The top-level browser container view.
-@property(nonatomic, retain) BrowserContainerView* contentArea;
+@property(nonatomic, strong) BrowserContainerView* contentArea;
// Invisible button used to dismiss the keyboard.
-@property(nonatomic, retain) UIButton* typingShield;
+@property(nonatomic, strong) UIButton* typingShield;
// Activates/deactivates the object. This will enable/disable the ability for
// this object to browse, and to have live UIWebViews associated with it. While
@@ -87,7 +87,7 @@ extern NSString* const kLocationBarResignsFirstResponderNotification;
@property(nonatomic, assign, readonly, getter=isPlayingTTS) BOOL playingTTS;
// Returns the TabModel passed to the initializer.
-@property(nonatomic, assign, readonly) TabModel* tabModel;
+@property(nonatomic, weak, readonly) TabModel* tabModel;
// Returns the ios::ChromeBrowserState passed to the initializer.
@property(nonatomic, assign, readonly) ios::ChromeBrowserState* browserState;
« no previous file with comments | « ios/chrome/browser/ui/browser_container_view.mm ('k') | ios/chrome/browser/ui/browser_view_controller.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698