Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(427)

Unified Diff: ui/events/ozone/evdev/libgestures_glue/event_reader_libevdev_cros.cc

Issue 1868363002: Replace scoped_ptr with std::unique_ptr in //ui (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@scopedptrcc
Patch Set: scopedptrui: rebase-make_scoped_ptr Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/events/ozone/evdev/libgestures_glue/event_reader_libevdev_cros.cc
diff --git a/ui/events/ozone/evdev/libgestures_glue/event_reader_libevdev_cros.cc b/ui/events/ozone/evdev/libgestures_glue/event_reader_libevdev_cros.cc
index 74fc52c7d50eac8e0d55a153329cbcd5b01ecfa5..65388a2e7589b01b88ba1db503353d8c161c4146 100644
--- a/ui/events/ozone/evdev/libgestures_glue/event_reader_libevdev_cros.cc
+++ b/ui/events/ozone/evdev/libgestures_glue/event_reader_libevdev_cros.cc
@@ -27,11 +27,12 @@ std::string FormatLog(const char* fmt, va_list args) {
} // namespace
-EventReaderLibevdevCros::EventReaderLibevdevCros(int fd,
- const base::FilePath& path,
- int id,
- const EventDeviceInfo& devinfo,
- scoped_ptr<Delegate> delegate)
+EventReaderLibevdevCros::EventReaderLibevdevCros(
+ int fd,
+ const base::FilePath& path,
+ int id,
+ const EventDeviceInfo& devinfo,
+ std::unique_ptr<Delegate> delegate)
: EventConverterEvdev(fd,
path,
id,

Powered by Google App Engine
This is Rietveld 408576698