Index: content/browser/appcache/appcache_navigation_handle_core.cc |
diff --git a/content/browser/appcache/appcache_navigation_handle_core.cc b/content/browser/appcache/appcache_navigation_handle_core.cc |
index 8cfdaa4af17896da98a8a82289af21de2c58f0f4..18905f01c1182af3dede0d396971d4a07704b557 100644 |
--- a/content/browser/appcache/appcache_navigation_handle_core.cc |
+++ b/content/browser/appcache/appcache_navigation_handle_core.cc |
@@ -21,7 +21,7 @@ namespace { |
// Accessed on the IO thread only. |
using AppCacheHandleMap = |
std::map <int, content::AppCacheNavigationHandleCore*>; |
-base::LazyInstance<AppCacheHandleMap> g_appcache_handle_map; |
+base::LazyInstance<AppCacheHandleMap>::DestructorAtExit g_appcache_handle_map; |
Nico
2017/03/07 21:43:02
= LAZY_INSTANCE_INITIALIZER
scottmg
2017/03/07 21:56:30
Done. I am wondering why we do this at all now sin
|
} // namespace |