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

Side by Side Diff: ios/chrome/browser/ui/side_swipe_gesture_recognizer.mm

Issue 2567203002: Revert of [ObjC ARC] Converts ios/chrome/browser/ui:ui to ARC. (Closed)
Patch Set: Created 4 years 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
« no previous file with comments | « ios/chrome/browser/ui/show_privacy_settings_util.mm ('k') | ios/chrome/browser/ui/ui_util.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #import "ios/chrome/browser/ui/side_swipe_gesture_recognizer.h" 5 #import "ios/chrome/browser/ui/side_swipe_gesture_recognizer.h"
6 6
7 #include <cmath> 7 #include <cmath>
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 10
11 #if !defined(__has_feature) || !__has_feature(objc_arc)
12 #error "This file requires ARC support."
13 #endif
14
15 namespace { 11 namespace {
16 12
17 // The absolute maximum swipe angle from |x = y| for a swipe to begin. 13 // The absolute maximum swipe angle from |x = y| for a swipe to begin.
18 const CGFloat kMaxSwipeYAngle = 65; 14 const CGFloat kMaxSwipeYAngle = 65;
19 // The minimum distance between touches for a swipe to begin. 15 // The minimum distance between touches for a swipe to begin.
20 const CGFloat kDefaultMinSwipeXThreshold = 4; 16 const CGFloat kDefaultMinSwipeXThreshold = 4;
21 17
22 } // namespace 18 } // namespace
23 19
24 @implementation SideSwipeGestureRecognizer { 20 @implementation SideSwipeGestureRecognizer {
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 _startPoint = CGPointZero; 141 _startPoint = CGPointZero;
146 [super touchesEnded:touches withEvent:event]; 142 [super touchesEnded:touches withEvent:event];
147 } 143 }
148 144
149 - (void)touchesCancelled:(NSSet*)touches withEvent:(UIEvent*)event { 145 - (void)touchesCancelled:(NSSet*)touches withEvent:(UIEvent*)event {
150 _startPoint = CGPointZero; 146 _startPoint = CGPointZero;
151 [super touchesCancelled:touches withEvent:event]; 147 [super touchesCancelled:touches withEvent:event];
152 } 148 }
153 149
154 @end 150 @end
OLDNEW
« no previous file with comments | « ios/chrome/browser/ui/show_privacy_settings_util.mm ('k') | ios/chrome/browser/ui/ui_util.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698