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

Unified Diff: components/history/core/browser/web_history_service.cc

Issue 2231753002: components: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: One more call site 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: components/history/core/browser/web_history_service.cc
diff --git a/components/history/core/browser/web_history_service.cc b/components/history/core/browser/web_history_service.cc
index eca55b8ca67d71ef1fd70b3fa60caefeb3481c3a..8df2205617f52f3e30fec2adb2ce1ddda09fd59c 100644
--- a/components/history/core/browser/web_history_service.cc
+++ b/components/history/core/browser/web_history_service.cc
@@ -334,10 +334,10 @@ WebHistoryService::WebHistoryService(
}
WebHistoryService::~WebHistoryService() {
- STLDeleteElements(&pending_expire_requests_);
- STLDeleteElements(&pending_audio_history_requests_);
- STLDeleteElements(&pending_web_and_app_activity_requests_);
- STLDeleteElements(&pending_other_forms_of_browsing_history_requests_);
+ base::STLDeleteElements(&pending_expire_requests_);
+ base::STLDeleteElements(&pending_audio_history_requests_);
+ base::STLDeleteElements(&pending_web_and_app_activity_requests_);
+ base::STLDeleteElements(&pending_other_forms_of_browsing_history_requests_);
}
WebHistoryService::Request* WebHistoryService::CreateRequest(
« no previous file with comments | « components/history/core/browser/visit_tracker.cc ('k') | components/invalidation/impl/registration_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698