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

Unified Diff: chrome/browser/download/notification/download_notification_manager.h

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/download/notification/download_notification_manager.h
diff --git a/chrome/browser/download/notification/download_notification_manager.h b/chrome/browser/download/notification/download_notification_manager.h
index e164c08864c4daf007a77d8aed471d6e5a2bf24d..3b45d8618a4ef6d33d42d285fe37ad9560446c6c 100644
--- a/chrome/browser/download/notification/download_notification_manager.h
+++ b/chrome/browser/download/notification/download_notification_manager.h
@@ -32,7 +32,8 @@ class DownloadNotificationManager : public DownloadUIController::Delegate {
std::map<Profile*, DownloadNotificationManagerForProfile*>
manager_for_profile_;
- STLValueDeleter<std::map<Profile*, DownloadNotificationManagerForProfile*>>
+ base::STLValueDeleter<
+ std::map<Profile*, DownloadNotificationManagerForProfile*>>
items_deleter_;
};
@@ -69,7 +70,8 @@ class DownloadNotificationManagerForProfile
// Pointer to the message center instance.
message_center::MessageCenter* message_center_;
- STLValueDeleter<std::map<content::DownloadItem*, DownloadItemNotification*>>
+ base::STLValueDeleter<
+ std::map<content::DownloadItem*, DownloadItemNotification*>>
items_deleter_;
};

Powered by Google App Engine
This is Rietveld 408576698