| Index: ui/display/chromeos/x11/native_display_event_dispatcher_x11.h
|
| diff --git a/ui/display/chromeos/x11/native_display_event_dispatcher_x11.h b/ui/display/chromeos/x11/native_display_event_dispatcher_x11.h
|
| index 1a1c650600547f1e14fd74a73e35a17d2efe8cc8..399063eeef6c211c50fac1ead00790d1c6651e22 100644
|
| --- a/ui/display/chromeos/x11/native_display_event_dispatcher_x11.h
|
| +++ b/ui/display/chromeos/x11/native_display_event_dispatcher_x11.h
|
| @@ -31,7 +31,7 @@ class DISPLAY_EXPORT NativeDisplayEventDispatcherX11
|
| bool CanDispatchEvent(const PlatformEvent& event) override;
|
| uint32_t DispatchEvent(const PlatformEvent& event) override;
|
|
|
| - void SetTickClockForTest(scoped_ptr<base::TickClock> tick_clock);
|
| + void SetTickClockForTest(std::unique_ptr<base::TickClock> tick_clock);
|
|
|
| // How long the cached output is valid after startup.
|
| static const int kUseCacheAfterStartupMs;
|
| @@ -45,7 +45,7 @@ class DISPLAY_EXPORT NativeDisplayEventDispatcherX11
|
|
|
| base::TimeTicks startup_time_;
|
|
|
| - scoped_ptr<base::TickClock> tick_clock_;
|
| + std::unique_ptr<base::TickClock> tick_clock_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(NativeDisplayEventDispatcherX11);
|
| };
|
|
|