OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 #include "ui/events/gestures/gesture_recognizer_impl.h" | 5 #include "ui/events/gestures/gesture_recognizer_impl.h" |
6 | 6 |
7 #include <limits> | 7 #include <limits> |
8 | 8 |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
61 | 61 |
62 GestureProviderAura* CreateGestureProvider(GestureProviderAuraClient* client) { | 62 GestureProviderAura* CreateGestureProvider(GestureProviderAuraClient* client) { |
63 return new GestureProviderAura(client); | 63 return new GestureProviderAura(client); |
64 } | 64 } |
65 | 65 |
66 } // namespace | 66 } // namespace |
67 | 67 |
68 //////////////////////////////////////////////////////////////////////////////// | 68 //////////////////////////////////////////////////////////////////////////////// |
69 // GestureRecognizerImpl, public: | 69 // GestureRecognizerImpl, public: |
70 | 70 |
71 GestureRecognizerImpl::GestureRecognizerImpl() | 71 GestureRecognizerImpl::GestureRecognizerImpl() { |
72 : use_unified_gesture_detector_(CommandLine::ForCurrentProcess()->HasSwitch( | 72 // Default to not using the unified gesture detector. |
73 switches::kUseUnifiedGestureDetector)) { | 73 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); |
74 const std::string unified_gr_enabled_switch = | |
75 command_line.HasSwitch(switches::kUnifiedGestureDetector) ? | |
76 command_line.GetSwitchValueASCII(switches::kUnifiedGestureDetector) : | |
77 switches::kUnifiedGestureDetectorAuto; | |
78 | |
79 if (unified_gr_enabled_switch.empty() || | |
80 unified_gr_enabled_switch == switches::kUnifiedGestureDetectorEnabled) { | |
81 use_unified_gesture_detector_ = true; | |
82 } else if (unified_gr_enabled_switch == | |
83 switches::kUnifiedGestureDetectorAuto || | |
84 unified_gr_enabled_switch == | |
85 switches::kUnifiedGestureDetectorDisabled) { | |
86 use_unified_gesture_detector_ = false; | |
sadrul
2014/05/22 18:45:25
Can you do:
const bool kUseUnifiedDefault = fal
tdresser
2014/05/22 19:13:04
Done.
| |
87 } else { | |
88 LOG(ERROR) << "Invalid --unified-gesture-detector option: " | |
89 << unified_gr_enabled_switch; | |
90 use_unified_gesture_detector_ = false; | |
91 } | |
74 } | 92 } |
75 | 93 |
76 GestureRecognizerImpl::~GestureRecognizerImpl() { | 94 GestureRecognizerImpl::~GestureRecognizerImpl() { |
77 STLDeleteValues(&consumer_sequence_); | 95 STLDeleteValues(&consumer_sequence_); |
78 STLDeleteValues(&consumer_gesture_provider_); | 96 STLDeleteValues(&consumer_gesture_provider_); |
79 } | 97 } |
80 | 98 |
81 // Checks if this finger is already down, if so, returns the current target. | 99 // Checks if this finger is already down, if so, returns the current target. |
82 // Otherwise, returns NULL. | 100 // Otherwise, returns NULL. |
83 GestureConsumer* GestureRecognizerImpl::GetTouchLockedTarget( | 101 GestureConsumer* GestureRecognizerImpl::GetTouchLockedTarget( |
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
393 std::vector<GestureEventHelper*>::iterator it; | 411 std::vector<GestureEventHelper*>::iterator it; |
394 for (it = helpers.begin(); it != helpers.end(); ++it) | 412 for (it = helpers.begin(); it != helpers.end(); ++it) |
395 gesture_recognizer->AddGestureEventHelper(*it); | 413 gesture_recognizer->AddGestureEventHelper(*it); |
396 | 414 |
397 helpers.clear(); | 415 helpers.clear(); |
398 g_gesture_recognizer_instance = | 416 g_gesture_recognizer_instance = |
399 static_cast<GestureRecognizerImpl*>(gesture_recognizer); | 417 static_cast<GestureRecognizerImpl*>(gesture_recognizer); |
400 } | 418 } |
401 | 419 |
402 } // namespace ui | 420 } // namespace ui |
OLD | NEW |