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

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

Issue 7477008: Remove explicit keyword from multi-argument constructors (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 5 months 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 | « chrome/browser/extensions/extension_web_ui.h ('k') | chrome/browser/history/text_database_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 525729ef391a49dd0693056fba91433204f0aae5..a0329b2ad03922939f9eda38114ca2bc32375353 100644
--- a/chrome/browser/extensions/extensions_quota_service.h
+++ b/chrome/browser/extensions/extensions_quota_service.h
@@ -142,7 +142,7 @@ class QuotaLimitHeuristic {
};
// Ownership of |mapper| is given to the new QuotaLimitHeuristic.
- explicit QuotaLimitHeuristic(const Config& config, BucketMapper* map);
+ QuotaLimitHeuristic(const Config& config, BucketMapper* map);
virtual ~QuotaLimitHeuristic();
// Determines if sufficient quota exists (according to the Apply
@@ -173,7 +173,7 @@ class QuotaLimitHeuristic {
// a given period of time; e.g "no more than 100 events in an hour".
class ExtensionsQuotaService::TimedLimit : public QuotaLimitHeuristic {
public:
- explicit TimedLimit(const Config& config, BucketMapper* map)
+ TimedLimit(const Config& config, BucketMapper* map)
: QuotaLimitHeuristic(config, map) {}
virtual bool Apply(Bucket* bucket, const base::TimeTicks& event_time);
};
« no previous file with comments | « chrome/browser/extensions/extension_web_ui.h ('k') | chrome/browser/history/text_database_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698