| Index: chrome/browser/extensions/extensions_quota_service.h
|
| diff --git a/chrome/browser/extensions/extensions_quota_service.h b/chrome/browser/extensions/extensions_quota_service.h
|
| index 6b0ce5d543395425b956d62697c4328275f19fa5..60acde595967adbca8382072fd45db373381d368 100644
|
| --- a/chrome/browser/extensions/extensions_quota_service.h
|
| +++ b/chrome/browser/extensions/extensions_quota_service.h
|
| @@ -31,6 +31,10 @@ class ExtensionFunction;
|
| class QuotaLimitHeuristic;
|
| typedef std::list<QuotaLimitHeuristic*> QuotaLimitHeuristics;
|
|
|
| +namespace extensions {
|
| +class TestResetQuotaFunction;
|
| +}
|
| +
|
| // The ExtensionsQuotaService takes care that calls to certain extension
|
| // functions do not exceed predefined quotas.
|
| //
|
| @@ -54,7 +58,7 @@ class ExtensionsQuotaService : public base::NonThreadSafe {
|
| bool Assess(const std::string& extension_id, ExtensionFunction* function,
|
| const ListValue* args, const base::TimeTicks& event_time);
|
| private:
|
| - friend class ExtensionTestQuotaResetFunction;
|
| + friend class extensions::TestResetQuotaFunction;
|
| typedef std::string ExtensionId;
|
| typedef std::string FunctionName;
|
| // All QuotaLimitHeuristic instances in this map are owned by us.
|
|
|