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

Unified Diff: extensions/common/extension.cc

Issue 109673004: Revert "Update all users of base::Version to explicitly specify the namespace, and clean up the hea… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 12 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: extensions/common/extension.cc
diff --git a/extensions/common/extension.cc b/extensions/common/extension.cc
index ceb6a79a32beafaf066768cacb687d04518dc630..d3bb5a78fadfb0a5a87487fa52aa4b744f84b492 100644
--- a/extensions/common/extension.cc
+++ b/extensions/common/extension.cc
@@ -590,7 +590,7 @@ bool Extension::LoadVersion(base::string16* error) {
*error = base::ASCIIToUTF16(errors::kInvalidVersion);
return false;
}
- version_.reset(new base::Version(version_str));
+ version_.reset(new Version(version_str));
if (!version_->IsValid() || version_->components().size() > 4) {
*error = base::ASCIIToUTF16(errors::kInvalidVersion);
return false;
« no previous file with comments | « extensions/browser/pending_extension_manager.cc ('k') | extensions/common/manifest_handlers/shared_module_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698