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

Unified Diff: chrome/browser/extensions/extensions_quota_service.h

Issue 8473003: Add OVERRIDE to chrome/browser/extensions/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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: 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 0f166862f858e299ac9b6c61d40cd110d3df1c97..2f0cab097b556db6aca4e07af7b3318c6ca6a18b 100644
--- a/chrome/browser/extensions/extensions_quota_service.h
+++ b/chrome/browser/extensions/extensions_quota_service.h
@@ -190,7 +190,8 @@ class ExtensionsQuotaService::TimedLimit : public QuotaLimitHeuristic {
public:
TimedLimit(const Config& config, BucketMapper* map)
: QuotaLimitHeuristic(config, map) {}
- virtual bool Apply(Bucket* bucket, const base::TimeTicks& event_time);
+ virtual bool Apply(Bucket* bucket,
+ const base::TimeTicks& event_time) OVERRIDE;
};
// A per-item heuristic to limit the number of events that can occur in a
@@ -201,7 +202,8 @@ class ExtensionsQuotaService::SustainedLimit : public QuotaLimitHeuristic {
SustainedLimit(const base::TimeDelta& sustain,
const Config& config,
BucketMapper* map);
- virtual bool Apply(Bucket* bucket, const base::TimeTicks& event_time);
+ virtual bool Apply(Bucket* bucket,
+ const base::TimeTicks& event_time) OVERRIDE;
private:
// Specifies how long exhaustion of buckets is allowed to continue before
// denying requests.
« no previous file with comments | « chrome/browser/extensions/extension_webstore_private_api.h ('k') | chrome/browser/extensions/extensions_startup.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698