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

Unified Diff: extensions/common/extension.cc

Issue 1281313003: base: Remove using:: declaration from version.h header. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ninja -C out/Debug all Created 5 years, 4 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 b6803857ef917a2aacf79637f471ed28957358dc..06544e861a4db36f1386cec9a8acbb21161a9378 100644
--- a/extensions/common/extension.cc
+++ b/extensions/common/extension.cc
@@ -576,7 +576,7 @@ bool Extension::LoadVersion(base::string16* error) {
*error = base::ASCIIToUTF16(errors::kInvalidVersion);
return false;
}
- version_.reset(new Version(version_str));
+ version_.reset(new base::Version(version_str));
if (!version_->IsValid() || version_->components().size() > 4) {
*error = base::ASCIIToUTF16(errors::kInvalidVersion);
return false;

Powered by Google App Engine
This is Rietveld 408576698