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

Unified Diff: ios/web/web_state/ui/crw_web_controller_container_view.h

Issue 2916473002: [ObjC ARC] Converts ios/web:web to ARC. (Closed)
Patch Set: Fixing silly mistake Created 3 years, 6 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/web/web_state/ui/crw_web_controller_container_view.h
diff --git a/ios/web/web_state/ui/crw_web_controller_container_view.h b/ios/web/web_state/ui/crw_web_controller_container_view.h
index 6f00a23761d33044b6ba2800b2ca5ccc580fc259..fcf8905b31bf0db15badd2966ce8a4cc37708bc8 100644
--- a/ios/web/web_state/ui/crw_web_controller_container_view.h
+++ b/ios/web/web_state/ui/crw_web_controller_container_view.h
@@ -33,14 +33,13 @@
#pragma mark Content Views
// The web view content view being displayed.
-@property(nonatomic, retain, readonly)
+@property(nonatomic, strong, readonly)
CRWWebViewContentView* webViewContentView;
// The native controller whose content is being displayed.
-@property(nonatomic, retain, readonly) id<CRWNativeContent> nativeController;
+@property(nonatomic, strong, readonly) id<CRWNativeContent> nativeController;
// The currently displayed transient content view.
-@property(nonatomic, retain, readonly) CRWContentView* transientContentView;
-@property(nonatomic, assign) id<CRWWebControllerContainerViewDelegate>
- delegate; // weak
+@property(nonatomic, strong, readonly) CRWContentView* transientContentView;
+@property(nonatomic, weak) id<CRWWebControllerContainerViewDelegate> delegate;
// Designated initializer. |proxy|'s content view will be updated as different
// content is added to the container.
« no previous file with comments | « ios/web/public/web_state/ui/crw_web_view_content_view.h ('k') | ios/web/web_state/ui/crw_web_controller_container_view.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698