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

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

Issue 16915006: Convert most of extensions and some other random stuff to using the base namespace for Values. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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
Index: chrome/browser/extensions/extensions_quota_service.cc
diff --git a/chrome/browser/extensions/extensions_quota_service.cc b/chrome/browser/extensions/extensions_quota_service.cc
index bd34b1f46dd22a1735c5eb8afceb11020cd31331..f776c4012ae20b6c03b0ea83d7e8de19336cfe33 100644
--- a/chrome/browser/extensions/extensions_quota_service.cc
+++ b/chrome/browser/extensions/extensions_quota_service.cc
@@ -37,7 +37,7 @@ ExtensionsQuotaService::~ExtensionsQuotaService() {
std::string ExtensionsQuotaService::Assess(
const std::string& extension_id,
ExtensionFunction* function,
- const ListValue* args,
+ const base::ListValue* args,
const base::TimeTicks& event_time) {
DCHECK(CalledOnValidThread());
@@ -106,7 +106,7 @@ void QuotaLimitHeuristic::Bucket::Reset(const Config& config,
}
void QuotaLimitHeuristic::SingletonBucketMapper::GetBucketsForArgs(
- const ListValue* args,
+ const base::ListValue* args,
BucketList* buckets) {
buckets->push_back(&bucket_);
}
@@ -119,7 +119,7 @@ QuotaLimitHeuristic::QuotaLimitHeuristic(const Config& config,
QuotaLimitHeuristic::~QuotaLimitHeuristic() {}
-bool QuotaLimitHeuristic::ApplyToArgs(const ListValue* args,
+bool QuotaLimitHeuristic::ApplyToArgs(const base::ListValue* args,
const base::TimeTicks& event_time) {
BucketList buckets;
bucket_mapper_->GetBucketsForArgs(args, &buckets);

Powered by Google App Engine
This is Rietveld 408576698