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

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: more fixes 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
« no previous file with comments | « chrome/browser/prefs/session_startup_pref.cc ('k') | chrome/browser/ui/startup/default_browser_prompt.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 d35ab339633fbba142eb271a25d6250ac0e49874..b722a644f2c12b3e40264241fa281430d22769a5 100644
--- a/chrome/browser/profiles/profile_impl.cc
+++ b/chrome/browser/profiles/profile_impl.cc
@@ -871,8 +871,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);
}
« no previous file with comments | « chrome/browser/prefs/session_startup_pref.cc ('k') | chrome/browser/ui/startup/default_browser_prompt.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698