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

Unified Diff: chrome/browser/ui/views/website_settings/website_settings_popup_view.cc

Issue 2230203002: chrome: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed accidental components/ change 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
Index: chrome/browser/ui/views/website_settings/website_settings_popup_view.cc
diff --git a/chrome/browser/ui/views/website_settings/website_settings_popup_view.cc b/chrome/browser/ui/views/website_settings/website_settings_popup_view.cc
index ac90cc17e7dcd8a8e4fe33b98eb3fd1457520fdd..f982f85d9540007bebb66331ab1c56c4930649f6 100644
--- a/chrome/browser/ui/views/website_settings/website_settings_popup_view.cc
+++ b/chrome/browser/ui/views/website_settings/website_settings_popup_view.cc
@@ -629,8 +629,8 @@ void WebsiteSettingsPopupView::SetPermissionInfo(
// In addition, if a permission is set to the default setting, WebsiteSettings
// removes it from |permission_info_list|, but the button should remain.
if (permissions_content_) {
- STLDeleteContainerPointers(chosen_object_info_list.begin(),
- chosen_object_info_list.end());
+ base::STLDeleteContainerPointers(chosen_object_info_list.begin(),
+ chosen_object_info_list.end());
return;
}

Powered by Google App Engine
This is Rietveld 408576698