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

Unified Diff: chrome/browser/net/quota_policy_channel_id_store.h

Issue 1476263004: Remove ScopedVector from IDStores (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Created 5 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
« no previous file with comments | « no previous file | chrome/browser/net/quota_policy_channel_id_store.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/net/quota_policy_channel_id_store.h
diff --git a/chrome/browser/net/quota_policy_channel_id_store.h b/chrome/browser/net/quota_policy_channel_id_store.h
index a2966f8eb3d440164222b5a75940a55a6e433669..63b1bae9f60a47018406cb5ef3bc77d1bba08ba9 100644
--- a/chrome/browser/net/quota_policy_channel_id_store.h
+++ b/chrome/browser/net/quota_policy_channel_id_store.h
@@ -7,6 +7,7 @@
#include <set>
#include <string>
+#include <vector>
#include "base/callback_forward.h"
#include "base/compiler_specific.h"
@@ -50,7 +51,8 @@ class QuotaPolicyChannelIDStore
void SetForceKeepSessionState() override;
private:
- typedef ScopedVector<net::DefaultChannelIDStore::ChannelID> ChannelIDVector;
+ typedef std::vector<scoped_ptr<net::DefaultChannelIDStore::ChannelID>>
+ ChannelIDVector;
~QuotaPolicyChannelIDStore() override;
« no previous file with comments | « no previous file | chrome/browser/net/quota_policy_channel_id_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698