| Index: chrome/browser/ui/views/ash/tab_scrubber.cc
|
| diff --git a/chrome/browser/ui/views/ash/tab_scrubber.cc b/chrome/browser/ui/views/ash/tab_scrubber.cc
|
| index cfff2b8b990288ef111fd047c1f60047be88c4fd..9f9c4145799b15aa5231be49a2ac6969514067a0 100644
|
| --- a/chrome/browser/ui/views/ash/tab_scrubber.cc
|
| +++ b/chrome/browser/ui/views/ash/tab_scrubber.cc
|
| @@ -20,7 +20,7 @@
|
| #include "ui/aura/window.h"
|
| #include "ui/events/event.h"
|
| #include "ui/events/event_utils.h"
|
| -#include "ui/events/gestures/gesture_configuration.h"
|
| +#include "ui/events/gesture_detection/gesture_configuration.h"
|
| #include "ui/views/controls/glow_hover_controller.h"
|
|
|
| namespace {
|
| @@ -168,9 +168,10 @@ void TabScrubber::OnScrollEvent(ui::ScrollEvent* event) {
|
| if (activate_timer_.IsRunning()) {
|
| activate_timer_.Reset();
|
| } else {
|
| - int delay = use_default_activation_delay_ ?
|
| - ui::GestureConfiguration::tab_scrub_activation_delay_in_ms() :
|
| - activation_delay_;
|
| + int delay = use_default_activation_delay_
|
| + ? ui::GestureConfiguration::GetInstance()
|
| + ->tab_scrub_activation_delay_in_ms()
|
| + : activation_delay_;
|
| if (delay >= 0) {
|
| activate_timer_.Start(FROM_HERE,
|
| base::TimeDelta::FromMilliseconds(delay),
|
|
|