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

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

Issue 903273002: Update from https://crrev.com/315085 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 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 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 #include "ui/events/gesture_detection/gesture_provider.h" 5 #include "ui/events/gesture_detection/gesture_provider.h"
6 6
7 #include <cmath> 7 #include <cmath>
8 8
9 #include "base/auto_reset.h" 9 #include "base/auto_reset.h"
10 #include "base/debug/trace_event.h" 10 #include "base/trace_event/trace_event.h"
11 #include "ui/events/event_constants.h" 11 #include "ui/events/event_constants.h"
12 #include "ui/events/gesture_detection/gesture_event_data.h" 12 #include "ui/events/gesture_detection/gesture_event_data.h"
13 #include "ui/events/gesture_detection/gesture_listeners.h" 13 #include "ui/events/gesture_detection/gesture_listeners.h"
14 #include "ui/events/gesture_detection/motion_event.h" 14 #include "ui/events/gesture_detection/motion_event.h"
15 #include "ui/events/gesture_detection/scale_gesture_listeners.h" 15 #include "ui/events/gesture_detection/scale_gesture_listeners.h"
16 #include "ui/gfx/geometry/point_f.h" 16 #include "ui/gfx/geometry/point_f.h"
17 17
18 namespace ui { 18 namespace ui {
19 namespace { 19 namespace {
20 20
(...skipping 791 matching lines...) Expand 10 before | Expand all | Expand 10 after
812 // null'ing of the listener until the sequence has ended. 812 // null'ing of the listener until the sequence has ended.
813 if (current_down_event_) 813 if (current_down_event_)
814 return; 814 return;
815 815
816 const bool double_tap_enabled = 816 const bool double_tap_enabled =
817 double_tap_support_for_page_ && double_tap_support_for_platform_; 817 double_tap_support_for_page_ && double_tap_support_for_platform_;
818 gesture_listener_->SetDoubleTapEnabled(double_tap_enabled); 818 gesture_listener_->SetDoubleTapEnabled(double_tap_enabled);
819 } 819 }
820 820
821 } // namespace ui 821 } // namespace ui
OLDNEW
« no previous file with comments | « tools/valgrind/memcheck/suppressions.txt ('k') | ui/events/gesture_detection/motion_event_buffer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698