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

Unified Diff: chrome/browser/profiles/profile_impl.cc

Issue 100543005: Update all users of base::Version to explicitly specify the namespace, and clean up the header. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: someday it will work Created 7 years 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
« no previous file with comments | « chrome/browser/profiles/profile_browsertest.cc ('k') | chrome/browser/ui/pdf/pdf_unsupported_feature.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/profiles/profile_impl.cc
diff --git a/chrome/browser/profiles/profile_impl.cc b/chrome/browser/profiles/profile_impl.cc
index d8c3ce3b0f6ba2bd86d8af156bd7c31c13556694..3ecab152fd197643a6046b0090744389eadecc71 100644
--- a/chrome/browser/profiles/profile_impl.cc
+++ b/chrome/browser/profiles/profile_impl.cc
@@ -820,8 +820,8 @@ void ProfileImpl::OnPrefsLoaded(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);
}
« no previous file with comments | « chrome/browser/profiles/profile_browsertest.cc ('k') | chrome/browser/ui/pdf/pdf_unsupported_feature.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698