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

Unified Diff: ui/message_center/views/notification_view.cc

Issue 2230183002: ui: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 4 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
« no previous file with comments | « ui/message_center/views/message_list_view.cc ('k') | ui/views/accessibility/ax_aura_obj_cache.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/message_center/views/notification_view.cc
diff --git a/ui/message_center/views/notification_view.cc b/ui/message_center/views/notification_view.cc
index aa77085f2c226bc8c4800e97df93aae794af6b51..54f35573967ea6f03881c87d1c08e66d071a836e 100644
--- a/ui/message_center/views/notification_view.cc
+++ b/ui/message_center/views/notification_view.cc
@@ -632,8 +632,8 @@ void NotificationView::CreateOrUpdateActionButtonViews(
if (new_buttons || buttons.size() == 0) {
// STLDeleteElements also clears the container.
- STLDeleteElements(&separators_);
- STLDeleteElements(&action_buttons_);
+ base::STLDeleteElements(&separators_);
+ base::STLDeleteElements(&action_buttons_);
}
DCHECK(bottom_view_);
« no previous file with comments | « ui/message_center/views/message_list_view.cc ('k') | ui/views/accessibility/ax_aura_obj_cache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698