Index: content/browser/renderer_host/ui_events_helper.h |
diff --git a/content/browser/renderer_host/ui_events_helper.h b/content/browser/renderer_host/ui_events_helper.h |
index dc92483d8a53c2fde8b02b25b1acd2123dea1dc0..b04a8d35dd5f089c4a43f9c4395c447a8a87a789 100644 |
--- a/content/browser/renderer_host/ui_events_helper.h |
+++ b/content/browser/renderer_host/ui_events_helper.h |
@@ -5,7 +5,9 @@ |
#ifndef CONTENT_BROWSER_RENDERER_HOST_UI_EVENTS_HELPER_H_ |
#define CONTENT_BROWSER_RENDERER_HOST_UI_EVENTS_HELPER_H_ |
-#include "base/memory/scoped_vector.h" |
+#include <memory> |
+#include <vector> |
+ |
#include "content/browser/renderer_host/event_with_latency_info.h" |
#include "content/common/content_export.h" |
@@ -32,7 +34,7 @@ enum TouchEventCoordinateSystem { |
// the Aura EventDispatcher co-ordinate system). |
CONTENT_EXPORT bool MakeUITouchEventsFromWebTouchEvents( |
const TouchEventWithLatencyInfo& touch, |
- ScopedVector<ui::TouchEvent>* list, |
+ std::vector<std::unique_ptr<ui::TouchEvent>>* list, |
TouchEventCoordinateSystem coordinate_system); |
} // namespace content |