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

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

Issue 11312228: Move extension_error_utils.* and url_pattern_set.* into (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: move into extensions namespace Created 8 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.cc
diff --git a/chrome/browser/extensions/extensions_quota_service.cc b/chrome/browser/extensions/extensions_quota_service.cc
index 330a0b3cf968ea5883eaa7287b8745ecb62975a2..af88219d531a4e61b3f93f1b030c5eb8b9f37ac5 100644
--- a/chrome/browser/extensions/extensions_quota_service.cc
+++ b/chrome/browser/extensions/extensions_quota_service.cc
@@ -7,7 +7,7 @@
#include "base/message_loop.h"
#include "base/stl_util.h"
#include "chrome/browser/extensions/extension_function.h"
-#include "chrome/common/extensions/extension_error_utils.h"
+#include "extensions/common/extension_error_utils.h"
namespace {
@@ -133,7 +133,7 @@ bool QuotaLimitHeuristic::ApplyToArgs(const ListValue* args,
}
std::string QuotaLimitHeuristic::GetError() const {
- return ExtensionErrorUtils::FormatErrorMessage(kOverQuotaError, name_);
+ return extensions::ErrorUtils::FormatErrorMessage(kOverQuotaError, name_);
}
ExtensionsQuotaService::SustainedLimit::SustainedLimit(

Powered by Google App Engine
This is Rietveld 408576698