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

Unified Diff: ios/web/public/web_state/crw_web_view_scroll_view_proxy.h

Issue 2380323002: [ARC] Converts parts of ios/web/web_state to ARC. (Closed)
Patch Set: Created 4 years, 3 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/web/public/web_state/crw_web_view_scroll_view_proxy.h
diff --git a/ios/web/public/web_state/crw_web_view_scroll_view_proxy.h b/ios/web/public/web_state/crw_web_view_scroll_view_proxy.h
index 7b49f89c3d11d8930130c2c3629ab9f1a97e3ace..7ac4ccbba2eb770f4cfaa9ab9251ea5e43097b15 100644
--- a/ios/web/public/web_state/crw_web_view_scroll_view_proxy.h
+++ b/ios/web/public/web_state/crw_web_view_scroll_view_proxy.h
@@ -31,9 +31,10 @@
@property(nonatomic, readonly) CGRect frame;
@property(nonatomic, getter=isScrollEnabled) BOOL scrollEnabled;
@property(nonatomic, assign) BOOL bounces;
-@property(nonatomic, readonly) UIPanGestureRecognizer* panGestureRecognizer;
+@property(weak, nonatomic, readonly)
+ UIPanGestureRecognizer* panGestureRecognizer;
// Returns the scrollview's gesture recognizers.
-@property(nonatomic, readonly) NSArray* gestureRecognizers;
+@property(weak, nonatomic, readonly) NSArray* gestureRecognizers;
// Calls UIScrollView's implementation of setContentInset: directly. This
// bypasses a very slow update path in UIWebView.

Powered by Google App Engine
This is Rietveld 408576698