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

Unified Diff: content/child/appcache/web_application_cache_host_impl.cc

Issue 2496653002: Part 2 of base::IDMap refactor to eliminate IDMapOwnPointer/IDMapExternalPointer modes (Closed)
Patch Set: typedefs => using statements, update comments in base/id_map.h Created 4 years 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: content/child/appcache/web_application_cache_host_impl.cc
diff --git a/content/child/appcache/web_application_cache_host_impl.cc b/content/child/appcache/web_application_cache_host_impl.cc
index 3442fc0b78dfc40349ac408c479b3cfae077c697..1493304b4d658a47e450d43a1c36c58a2dfd6a3e 100644
--- a/content/child/appcache/web_application_cache_host_impl.cc
+++ b/content/child/appcache/web_application_cache_host_impl.cc
@@ -34,7 +34,7 @@ const char* const kEventNames[] = {
"UpdateReady", "Cached", "Obsolete"
};
-typedef IDMap<WebApplicationCacheHostImpl> HostsMap;
+using HostsMap = IDMap<WebApplicationCacheHostImpl*>;
HostsMap* all_hosts() {
static HostsMap* map = new HostsMap;
« no previous file with comments | « content/browser/service_worker/service_worker_version.cc ('k') | content/child/fileapi/file_system_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698