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

Unified Diff: ui/views/focus/view_storage.h

Issue 2348953002: Remove stl_util's STLDeleteContainerPairSecondPointers from ui/. (Closed)
Patch Set: fix Created 4 years, 3 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/views/focus/view_storage.h
diff --git a/ui/views/focus/view_storage.h b/ui/views/focus/view_storage.h
index d543415e490d2b41e0e9b1e986c60f8810bd1a31..73235c1c3f7d383c7f515a0370cf0be0d2ea1ff6 100644
--- a/ui/views/focus/view_storage.h
+++ b/ui/views/focus/view_storage.h
@@ -69,7 +69,7 @@ class VIEWS_EXPORT ViewStorage {
std::map<int, View*> id_to_view_;
// Association View to id, used to speed up view notification removal.
- std::map<View*, std::vector<int>*> view_to_ids_;
+ std::map<View*, std::vector<int>> view_to_ids_;
DISALLOW_COPY_AND_ASSIGN(ViewStorage);
};

Powered by Google App Engine
This is Rietveld 408576698