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

Unified Diff: ios/chrome/browser/ui/find_bar/find_bar_view.h

Issue 2664233004: [ObjC ARC] Converts ios/chrome/browser/ui/find_bar:find_bar to ARC. (Closed)
Patch Set: reorder keywords Created 3 years, 10 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/chrome/browser/ui/find_bar/find_bar_view.h
diff --git a/ios/chrome/browser/ui/find_bar/find_bar_view.h b/ios/chrome/browser/ui/find_bar/find_bar_view.h
index 98332e3ffc605bf9adac2d53add6c18d0eb7f9a3..1382d40726fe3bc67d72aa3f4e05bd581c7da7fb 100644
--- a/ios/chrome/browser/ui/find_bar/find_bar_view.h
+++ b/ios/chrome/browser/ui/find_bar/find_bar_view.h
@@ -38,13 +38,13 @@ extern NSString* const kFindInPageCloseButtonId;
- (void)updateResultsLabelWithText:(NSString*)text;
// The textfield with search term.
-@property(nonatomic, assign) UITextField* inputField;
+@property(nonatomic, weak) UITextField* inputField;
// Button to go to previous search result.
-@property(nonatomic, assign) UIButton* previousButton;
+@property(nonatomic, weak) UIButton* previousButton;
// Button to go to next search result.
-@property(nonatomic, assign) UIButton* nextButton;
+@property(nonatomic, weak) UIButton* nextButton;
// Button to dismiss Find in Page.
-@property(nonatomic, assign) UIButton* closeButton;
+@property(nonatomic, weak) UIButton* closeButton;
@end
« no previous file with comments | « ios/chrome/browser/ui/find_bar/find_bar_touch_forwarding_view.mm ('k') | ios/chrome/browser/ui/find_bar/find_bar_view.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698