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

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

Issue 10375021: Move Extension into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Take 6 Created 8 years, 7 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/external_policy_extension_loader.cc
diff --git a/chrome/browser/extensions/external_policy_extension_loader.cc b/chrome/browser/extensions/external_policy_extension_loader.cc
index fedeadab78e7d98bf836881534d7dbc389a1a09b..c0a9bf9567f87a536e23253ee197c21cd5f71a78 100644
--- a/chrome/browser/extensions/external_policy_extension_loader.cc
+++ b/chrome/browser/extensions/external_policy_extension_loader.cc
@@ -26,7 +26,7 @@ bool CheckExtension(const std::string& id, const std::string& update_url) {
<< "extension: " << update_url;
return false;
}
- if (!Extension::IdIsValid(id)) {
+ if (!extensions::Extension::IdIsValid(id)) {
LOG(WARNING) << "Policy specifies invalid ID for external "
<< "extension: " << id;
return false;

Powered by Google App Engine
This is Rietveld 408576698