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

Unified Diff: chrome/browser/mac/master_prefs.mm

Issue 1257633002: Componentize VersionInfo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix OWNERS (copy from //chrome/OWNERS) Created 5 years, 5 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/mac/master_prefs.mm
diff --git a/chrome/browser/mac/master_prefs.mm b/chrome/browser/mac/master_prefs.mm
index 174e35d654288422b483fbdabc410291a6d257f7..720577c874c280207194c9fbdaabf4eac1a059c3 100644
--- a/chrome/browser/mac/master_prefs.mm
+++ b/chrome/browser/mac/master_prefs.mm
@@ -31,8 +31,8 @@ namespace master_prefs {
base::FilePath MasterPrefsPath() {
#if defined(GOOGLE_CHROME_BUILD)
// Don't load master preferences for the canary.
- chrome::VersionInfo::Channel channel = chrome::VersionInfo::GetChannel();
- if (channel == chrome::VersionInfo::CHANNEL_CANARY)
+ version_info::Channel channel = chrome::VersionInfo::GetChannel();
+ if (channel == version_info::CHANNEL_CANARY)
return base::FilePath();
#endif // GOOGLE_CHROME_BUILD

Powered by Google App Engine
This is Rietveld 408576698