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

Unified Diff: content/browser/time_zone_monitor_linux.cc

Issue 2228403003: content: 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 | « content/browser/storage_partition_impl_map.cc ('k') | content/child/resource_dispatcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/time_zone_monitor_linux.cc
diff --git a/content/browser/time_zone_monitor_linux.cc b/content/browser/time_zone_monitor_linux.cc
index 952e2e8812d032d8a287b3eb0bbd13160ca9d8b6..88a59188eb030db83df681b545d5ec029914192c 100644
--- a/content/browser/time_zone_monitor_linux.cc
+++ b/content/browser/time_zone_monitor_linux.cc
@@ -74,7 +74,7 @@ class TimeZoneMonitorLinuxImpl
~TimeZoneMonitorLinuxImpl() {
DCHECK(!owner_);
- STLDeleteElements(&file_path_watchers_);
+ base::STLDeleteElements(&file_path_watchers_);
}
void StartWatchingOnFileThread() {
@@ -104,7 +104,7 @@ class TimeZoneMonitorLinuxImpl
void StopWatchingOnFileThread() {
DCHECK_CURRENTLY_ON(BrowserThread::FILE);
- STLDeleteElements(&file_path_watchers_);
+ base::STLDeleteElements(&file_path_watchers_);
}
void OnTimeZoneFileChanged(const base::FilePath& path, bool error) {
« no previous file with comments | « content/browser/storage_partition_impl_map.cc ('k') | content/child/resource_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698