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

Unified Diff: ios/chrome/browser/find_in_page/js_findinpage_manager.h

Issue 2685393004: [ios] Hoists the FindInPageModel up into the controller. (Closed)
Patch Set: 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/find_in_page/js_findinpage_manager.h
diff --git a/ios/chrome/browser/find_in_page/js_findinpage_manager.h b/ios/chrome/browser/find_in_page/js_findinpage_manager.h
index ff4c9df6ed83375bd09af70b76b356cc70d1409d..ce5d2b8f474855127106607086b27d2182e2da68 100644
--- a/ios/chrome/browser/find_in_page/js_findinpage_manager.h
+++ b/ios/chrome/browser/find_in_page/js_findinpage_manager.h
@@ -26,8 +26,8 @@ extern FindInPageEntry FindInPageEntryZero;
// Manager for the injection of the Find In Page JavaScript.
@interface JsFindinpageManager : CRWJSInjectionManager
-// Find In Page model. TODO(justincohen) consider using find_tab_helper.cc.
-@property(strong, nonatomic, readonly) FindInPageModel* findInPageModel;
+// Find In Page model.
+@property(nonatomic, readwrite, strong) FindInPageModel* findInPageModel;
rohitrao (ping after 24h) 2017/02/10 21:07:08 This isn't created by the manager anymore, but I t
// Sets the width and height of the window.
- (void)setWidth:(CGFloat)width height:(CGFloat)height;

Powered by Google App Engine
This is Rietveld 408576698