| 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;
|
|
|