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

Unified Diff: ui/events/ozone/evdev/libgestures_glue/gesture_property_provider.h

Issue 1099383002: Change ScopedPtrHashMap's 2nd template parameter (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 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/gesture_property_provider.h
diff --git a/ui/events/ozone/evdev/libgestures_glue/gesture_property_provider.h b/ui/events/ozone/evdev/libgestures_glue/gesture_property_provider.h
index 1b21e4180e1b2eac36e5e96ede65a01bcb38db2c..bd7b471d361818f4d839059c2cd0cf15166b7ea8 100644
--- a/ui/events/ozone/evdev/libgestures_glue/gesture_property_provider.h
+++ b/ui/events/ozone/evdev/libgestures_glue/gesture_property_provider.h
@@ -112,8 +112,9 @@ class EVENTS_OZONE_EVDEV_EXPORT GesturePropertyProvider {
// Mapping table from a device id to its property data.
// GestureDevicePropertyData contains both properties in use and default
// properties whose values will be applied upon the device attachment.
- typedef base::ScopedPtrHashMap<DeviceId, internal::GestureDevicePropertyData>
- ScopedDeviceDataMap;
+ typedef base::ScopedPtrHashMap<
+ DeviceId,
+ scoped_ptr<internal::GestureDevicePropertyData>> ScopedDeviceDataMap;
// Register a device. Setup data-structures and the device's default
// properties.

Powered by Google App Engine
This is Rietveld 408576698