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

Unified Diff: chrome/browser/web_applications/web_app_mac.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/web_applications/web_app_mac.mm
diff --git a/chrome/browser/web_applications/web_app_mac.mm b/chrome/browser/web_applications/web_app_mac.mm
index 32b0367e6e5b60b842eff5078d3617f1e0fa9456..ab51282a34be93b49adc1b352c59b238762aff31 100644
--- a/chrome/browser/web_applications/web_app_mac.mm
+++ b/chrome/browser/web_applications/web_app_mac.mm
@@ -319,10 +319,10 @@ base::FilePath GetLocalizableAppShortcutsSubdirName() {
static const char kChromeCanaryAppDirName[] = "Chrome Canary Apps.localized";
switch (chrome::VersionInfo::GetChannel()) {
- case chrome::VersionInfo::CHANNEL_UNKNOWN:
+ case version_info::CHANNEL_UNKNOWN:
return base::FilePath(kChromiumAppDirName);
- case chrome::VersionInfo::CHANNEL_CANARY:
+ case version_info::CHANNEL_CANARY:
return base::FilePath(kChromeCanaryAppDirName);
default:

Powered by Google App Engine
This is Rietveld 408576698