| Index: chrome/browser/browsing_data_quota_helper.h
|
| diff --git a/chrome/browser/browsing_data_quota_helper.h b/chrome/browser/browsing_data_quota_helper.h
|
| index 2ed0c1b71517dd3430c1c2fbf25a8f001f38996d..d3aac1bb3b6ce8a396e2406cd0c90260c2d75539 100644
|
| --- a/chrome/browser/browsing_data_quota_helper.h
|
| +++ b/chrome/browser/browsing_data_quota_helper.h
|
| @@ -6,8 +6,8 @@
|
| #define CHROME_BROWSER_BROWSING_DATA_QUOTA_HELPER_H_
|
| #pragma once
|
|
|
| +#include <list>
|
| #include <string>
|
| -#include <vector>
|
|
|
| #include "base/callback_old.h"
|
| #include "base/memory/ref_counted.h"
|
| @@ -57,7 +57,7 @@ class BrowsingDataQuotaHelper
|
| int64 persistent_usage;
|
| };
|
|
|
| - typedef std::vector<QuotaInfo> QuotaInfoArray;
|
| + typedef std::list<QuotaInfo> QuotaInfoArray;
|
| typedef Callback1<const QuotaInfoArray&>::Type FetchResultCallback;
|
|
|
| static BrowsingDataQuotaHelper* Create(Profile* profile);
|
|
|