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

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

Issue 2524383002: [ObjC ARC] Converts ios/chrome/browser/find_in_page:find_in_page to ARC.Automatically generated A… (Closed)
Patch Set: qwer Created 4 years, 1 month 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 bc5b53a6947e78e0bb45fe1950da82d29ff1422a..ff4c9df6ed83375bd09af70b76b356cc70d1409d 100644
--- a/ios/chrome/browser/find_in_page/js_findinpage_manager.h
+++ b/ios/chrome/browser/find_in_page/js_findinpage_manager.h
@@ -9,7 +9,6 @@
#include <CoreGraphics/CGGeometry.h>
#include "base/ios/block_types.h"
-#import "base/mac/scoped_nsobject.h"
#import "ios/web/public/web_state/js/crw_js_injection_manager.h"
// Data from find in page.
@@ -25,14 +24,10 @@ extern FindInPageEntry FindInPageEntryZero;
@class FindInPageModel;
// Manager for the injection of the Find In Page JavaScript.
-@interface JsFindinpageManager : CRWJSInjectionManager {
- @private
- // Model for find in page.
- base::scoped_nsobject<FindInPageModel> findInPageModel_;
-}
+@interface JsFindinpageManager : CRWJSInjectionManager
// Find In Page model. TODO(justincohen) consider using find_tab_helper.cc.
-@property(nonatomic, readonly) FindInPageModel* findInPageModel;
+@property(strong, nonatomic, readonly) FindInPageModel* findInPageModel;
// Sets the width and height of the window.
- (void)setWidth:(CGFloat)width height:(CGFloat)height;
« no previous file with comments | « ios/chrome/browser/find_in_page/find_in_page_model.mm ('k') | ios/chrome/browser/find_in_page/js_findinpage_manager.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698