Chromium Code Reviews| 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..48640b71a612700031190c38f0f34357caeca05e 100644 |
| --- a/chrome/browser/extensions/extensions_quota_service.h |
| +++ b/chrome/browser/extensions/extensions_quota_service.h |
| @@ -27,6 +27,10 @@ |
| #include "base/timer.h" |
| #include "base/values.h" |
| +namespace extensions { |
| +class ExtensionTestQuotaResetFunction; |
| +} // namespace extensions |
|
Yoyo Zhou
2012/07/10 19:00:11
ditto
vabr (Chromium)
2012/07/11 10:01:25
Done. Also moved the forward decl. after those non
|
| + |
| class ExtensionFunction; |
| class QuotaLimitHeuristic; |
| typedef std::list<QuotaLimitHeuristic*> QuotaLimitHeuristics; |
| @@ -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::ExtensionTestQuotaResetFunction; |
| typedef std::string ExtensionId; |
| typedef std::string FunctionName; |
| // All QuotaLimitHeuristic instances in this map are owned by us. |