| Index: ui/events/x/touch_factory_x11.cc
|
| diff --git a/ui/events/x/touch_factory_x11.cc b/ui/events/x/touch_factory_x11.cc
|
| index 10cb890e236f88ba1c3c6f180ec2aa0856c481cb..b2ad8bfc736768e899128bfb0485578f84b6d422 100644
|
| --- a/ui/events/x/touch_factory_x11.cc
|
| +++ b/ui/events/x/touch_factory_x11.cc
|
| @@ -39,7 +39,7 @@ TouchFactory::TouchFactory()
|
| XDisplay* display = gfx::GetXDisplay();
|
| UpdateDeviceList(display);
|
|
|
| - CommandLine* cmdline = CommandLine::ForCurrentProcess();
|
| + base::CommandLine* cmdline = base::CommandLine::ForCurrentProcess();
|
| touch_events_disabled_ = cmdline->HasSwitch(switches::kTouchEvents) &&
|
| cmdline->GetSwitchValueASCII(switches::kTouchEvents) ==
|
| switches::kTouchEventsDisabled;
|
| @@ -59,7 +59,7 @@ void TouchFactory::SetTouchDeviceListFromCommandLine() {
|
| // This is primarily used for testing/debugging touch-event processing when a
|
| // touch-device isn't available.
|
| std::string touch_devices =
|
| - CommandLine::ForCurrentProcess()->GetSwitchValueASCII(
|
| + base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII(
|
| switches::kTouchDevices);
|
|
|
| if (!touch_devices.empty()) {
|
|
|