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

Unified Diff: content/browser/appcache/appcache_service_impl.h

Issue 2435863004: Remove stl_util's deletion function use from content/. (Closed)
Patch Set: minus service worker Created 4 years, 2 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: content/browser/appcache/appcache_service_impl.h
diff --git a/content/browser/appcache/appcache_service_impl.h b/content/browser/appcache/appcache_service_impl.h
index 1fdc34836cb7aae34acb4dd32d7e4f8ee05fdc91..ea78f6910e9c79c071320a9e4c82c635e33ae039 100644
--- a/content/browser/appcache/appcache_service_impl.h
+++ b/content/browser/appcache/appcache_service_impl.h
@@ -9,7 +9,6 @@
#include <map>
#include <memory>
-#include <set>
#include "base/gtest_prod_util.h"
#include "base/macros.h"
@@ -195,8 +194,9 @@ class CONTENT_EXPORT AppCacheServiceImpl
class GetInfoHelper;
class CheckResponseHelper;
- typedef std::set<AsyncHelper*> PendingAsyncHelpers;
- typedef std::map<int, AppCacheBackendImpl*> BackendMap;
+ using PendingAsyncHelpers =
+ std::map<AsyncHelper*, std::unique_ptr<AsyncHelper>>;
+ using BackendMap = std::map<int, AppCacheBackendImpl*>;
void Reinitialize();
« no previous file with comments | « content/browser/appcache/appcache_backend_impl.cc ('k') | content/browser/appcache/appcache_service_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698