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

Unified Diff: components/password_manager/core/browser/affiliation_backend.h

Issue 1099383002: Change ScopedPtrHashMap's 2nd template parameter (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 8 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: components/password_manager/core/browser/affiliation_backend.h
diff --git a/components/password_manager/core/browser/affiliation_backend.h b/components/password_manager/core/browser/affiliation_backend.h
index 334dd264b3591a951541852256f33d3ebe3b03f5..abd84d6bd97d23cd58f99ea210212eb3cb51780c 100644
--- a/components/password_manager/core/browser/affiliation_backend.h
+++ b/components/password_manager/core/browser/affiliation_backend.h
@@ -136,7 +136,7 @@ class AffiliationBackend : public FacetManagerHost,
// Contains a FacetManager for each facet URI that need ongoing attention. To
// save memory, managers are discarded as soon as they become redundant.
- base::ScopedPtrHashMap<FacetURI, FacetManager> facet_managers_;
+ base::ScopedPtrHashMap<FacetURI, scoped_ptr<FacetManager>> facet_managers_;
base::WeakPtrFactory<AffiliationBackend> weak_ptr_factory_;

Powered by Google App Engine
This is Rietveld 408576698