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

Side by Side Diff: ios/chrome/browser/ui/static_content/static_html_native_content.h

Issue 2890163003: [ObjC ARC] Converts ios/chrome/browser/ui/static_content:static_content to ARC. (Closed)
Patch Set: Addressed all comments. 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 unified diff | Download patch
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef IOS_CHROME_BROWSER_UI_STATIC_CONTENT_STATIC_HTML_NATIVE_CONTENT_H_ 5 #ifndef IOS_CHROME_BROWSER_UI_STATIC_CONTENT_STATIC_HTML_NATIVE_CONTENT_H_
6 #define IOS_CHROME_BROWSER_UI_STATIC_CONTENT_STATIC_HTML_NATIVE_CONTENT_H_ 6 #define IOS_CHROME_BROWSER_UI_STATIC_CONTENT_STATIC_HTML_NATIVE_CONTENT_H_
7 7
8 #import <UIKit/UIKit.h> 8 #import <UIKit/UIKit.h>
9 9
10 #import "ios/web/public/web_state/ui/crw_native_content.h" 10 #import "ios/web/public/web_state/ui/crw_native_content.h"
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 referrer:(const web::Referrer&)referrer 48 referrer:(const web::Referrer&)referrer
49 transition:(ui::PageTransition)transition 49 transition:(ui::PageTransition)transition
50 rendererInitiated:(BOOL)rendererInitiated; 50 rendererInitiated:(BOOL)rendererInitiated;
51 51
52 // The scrollview of the native view. 52 // The scrollview of the native view.
53 - (UIScrollView*)scrollView; 53 - (UIScrollView*)scrollView;
54 54
55 // The overscroll actions controller of the native content. 55 // The overscroll actions controller of the native content.
56 // Setting this value to non-nil will enable Overscroll Actions. 56 // Setting this value to non-nil will enable Overscroll Actions.
57 // Invalidated when |close| is called on this object. 57 // Invalidated when |close| is called on this object.
58 @property(nonatomic, assign) 58 @property(nonatomic, strong)
59 OverscrollActionsController* overscrollActionsController; 59 OverscrollActionsController* overscrollActionsController;
60 60
61 @end 61 @end
62 62
63 #endif // IOS_CHROME_BROWSER_UI_STATIC_CONTENT_STATIC_HTML_NATIVE_CONTENT_H_ 63 #endif // IOS_CHROME_BROWSER_UI_STATIC_CONTENT_STATIC_HTML_NATIVE_CONTENT_H_
OLDNEW
« no previous file with comments | « ios/chrome/browser/ui/static_content/BUILD.gn ('k') | ios/chrome/browser/ui/static_content/static_html_native_content.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698