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

Unified Diff: chrome/browser/profiles/profile_impl.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: chrome/browser/profiles/profile_impl.cc
diff --git a/chrome/browser/profiles/profile_impl.cc b/chrome/browser/profiles/profile_impl.cc
index a0f1c787268ce8549b2519d56e367cb21a0b2e7f..9ec59bd7496c06813dd9e332090db658a2de3fa1 100644
--- a/chrome/browser/profiles/profile_impl.cc
+++ b/chrome/browser/profiles/profile_impl.cc
@@ -874,8 +874,8 @@ void ProfileImpl::OnPrefsLoaded(CreateMode create_mode, bool success) {
}
bool ProfileImpl::WasCreatedByVersionOrLater(const std::string& version) {
- Version profile_version(ChromeVersionService::GetVersion(prefs_.get()));
- Version arg_version(version);
+ base::Version profile_version(ChromeVersionService::GetVersion(prefs_.get()));
+ base::Version arg_version(version);
return (profile_version.CompareTo(arg_version) >= 0);
}

Powered by Google App Engine
This is Rietveld 408576698