Chromium Code Reviews| Index: ui/aura/gestures/gesture_recognizer_unittest.cc |
| diff --git a/ui/aura/gestures/gesture_recognizer_unittest.cc b/ui/aura/gestures/gesture_recognizer_unittest.cc |
| index 39be275e273145507341f5b5ddf3dd3d2fa407b0..b5e5bede5f6e4000de363a05a622592b5317b545 100644 |
| --- a/ui/aura/gestures/gesture_recognizer_unittest.cc |
| +++ b/ui/aura/gestures/gesture_recognizer_unittest.cc |
| @@ -681,10 +681,9 @@ class GestureRecognizerTest : public AuraTestBase, |
| virtual void SetUp() OVERRIDE { |
| // TODO(tdresser): Once unified GR has landed, only run these tests once. |
| - if (UsingUnifiedGR()) { |
| - CommandLine::ForCurrentProcess()->AppendSwitch( |
| - switches::kUseUnifiedGestureDetector); |
| - } |
| + CommandLine::ForCurrentProcess()->AppendSwitch( |
| + UsingUnifiedGR() ? switches::kUnifiedGestureDetectorEnabled |
| + : switches::kUnifiedGestureDetectorDisabled); |
|
sadrul
2014/05/22 20:03:23
Does this actually work? Because you should be usi
tdresser
2014/05/22 20:12:36
Ack, of course not...
Thanks, fixed (and verified
|
| AuraTestBase::SetUp(); |
| } |