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

Unified Diff: ui/ozone/platform/drm/gpu/screen_manager.h

Issue 1438343002: Remove deprecated ScopedVector usage from ui/ozone and ui/events/ozone (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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/ozone/platform/drm/gpu/screen_manager.h
diff --git a/ui/ozone/platform/drm/gpu/screen_manager.h b/ui/ozone/platform/drm/gpu/screen_manager.h
index 6c067ba2b3186438a8a07c2c795730c0db643cc5..6a6d6ae4eb19323a9d8373e5899e2300c772a97a 100644
--- a/ui/ozone/platform/drm/gpu/screen_manager.h
+++ b/ui/ozone/platform/drm/gpu/screen_manager.h
@@ -79,8 +79,8 @@ class OZONE_EXPORT ScreenManager {
void UpdateControllerToWindowMapping();
private:
- typedef ScopedVector<HardwareDisplayController> HardwareDisplayControllers;
-
+ typedef std::vector<scoped_ptr<HardwareDisplayController>>
+ HardwareDisplayControllers;
typedef base::ScopedPtrHashMap<gfx::AcceleratedWidget, scoped_ptr<DrmWindow>>
WidgetToWindowMap;

Powered by Google App Engine
This is Rietveld 408576698