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

Unified Diff: content/test/mock_webblob_registry_impl.h

Issue 1099383002: Change ScopedPtrHashMap's 2nd template parameter (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix build after 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: content/test/mock_webblob_registry_impl.h
diff --git a/content/test/mock_webblob_registry_impl.h b/content/test/mock_webblob_registry_impl.h
index 67552f9823cac98e7048975ec299a7b4d1c0057d..b8e5926bff090fff2b33a0e5a1ff2266be4b50a2 100644
--- a/content/test/mock_webblob_registry_impl.h
+++ b/content/test/mock_webblob_registry_impl.h
@@ -45,7 +45,8 @@ class MockWebBlobRegistryImpl : public blink::WebBlobRegistry {
blink::WebVector<blink::WebBlobData::Item*>* items) const;
private:
- base::ScopedPtrHashMap<std::string, ScopedVector<blink::WebBlobData::Item>>
+ base::ScopedPtrHashMap<std::string,
+ scoped_ptr<ScopedVector<blink::WebBlobData::Item>>>
blob_data_items_map_;
std::map<std::string, int> blob_ref_count_map_;

Powered by Google App Engine
This is Rietveld 408576698