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

Side by Side Diff: ui/events/gesture_detection/gesture_config_helper_aura.cc

Issue 393953012: Eager Gesture Recognition on Aura (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address jdduke's feedback. Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « ui/events/events.gyp ('k') | ui/events/gesture_detection/gesture_provider.h » ('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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 // MSVC++ requires this to be set before any other includes to get M_PI. 5 // MSVC++ requires this to be set before any other includes to get M_PI.
6 #define _USE_MATH_DEFINES 6 #define _USE_MATH_DEFINES
7 7
8 #include "ui/events/gesture_detection/gesture_config_helper.h" 8 #include "ui/events/gesture_detection/gesture_config_helper.h"
9 9
10 #include <cmath> 10 #include <cmath>
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 config.min_scaling_touch_major = GestureConfiguration::default_radius() * 2; 60 config.min_scaling_touch_major = GestureConfiguration::default_radius() * 2;
61 config.min_scaling_span = GestureConfiguration::min_scaling_span_in_pixels(); 61 config.min_scaling_span = GestureConfiguration::min_scaling_span_in_pixels();
62 config.min_pinch_update_span_delta = min_pinch_update_distance; 62 config.min_pinch_update_span_delta = min_pinch_update_distance;
63 return config; 63 return config;
64 } 64 }
65 65
66 } // namespace 66 } // namespace
67 67
68 GestureProvider::Config DefaultGestureProviderConfig() { 68 GestureProvider::Config DefaultGestureProviderConfig() {
69 GestureProvider::Config config; 69 GestureProvider::Config config;
70 config.display = gfx::Screen::GetNativeScreen()->GetPrimaryDisplay(); 70 gfx::Screen* screen = gfx::Screen::GetScreenByType(gfx::SCREEN_TYPE_NATIVE);
71 // |screen| is sometimes NULL during tests.
jdduke (slow) 2014/07/31 16:19:03 Hmm, I wonder if it would be an improvement to hav
72 if (screen)
73 config.display = screen->GetPrimaryDisplay();
71 config.gesture_detector_config = DefaultGestureDetectorConfig(); 74 config.gesture_detector_config = DefaultGestureDetectorConfig();
72 config.scale_gesture_detector_config = DefaultScaleGestureDetectorConfig(); 75 config.scale_gesture_detector_config = DefaultScaleGestureDetectorConfig();
73 config.gesture_begin_end_types_enabled = true; 76 config.gesture_begin_end_types_enabled = true;
74 // Half the size of the default touch length is a reasonable minimum. 77 // Half the size of the default touch length is a reasonable minimum.
75 config.min_gesture_bounds_length = GestureConfiguration::default_radius(); 78 config.min_gesture_bounds_length = GestureConfiguration::default_radius();
76 return config; 79 return config;
77 } 80 }
78 81
79 } // namespace ui 82 } // namespace ui
OLDNEW
« no previous file with comments | « ui/events/events.gyp ('k') | ui/events/gesture_detection/gesture_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698