Index: chrome/browser/shell_integration_linux.cc |
diff --git a/chrome/browser/shell_integration_linux.cc b/chrome/browser/shell_integration_linux.cc |
index 4e1c305b76fed7b747c47923deb03cf26159f2dd..3c646b3ba2181466505f12b63a7b2182641eab81 100644 |
--- a/chrome/browser/shell_integration_linux.cc |
+++ b/chrome/browser/shell_integration_linux.cc |
@@ -586,12 +586,12 @@ std::string GetProgramClassName() { |
std::string GetDesktopName(base::Environment* env) { |
#if defined(GOOGLE_CHROME_BUILD) |
- chrome::VersionInfo::Channel product_channel( |
+ version_info::Channel product_channel( |
chrome::VersionInfo::GetChannel()); |
switch (product_channel) { |
- case chrome::VersionInfo::CHANNEL_DEV: |
+ case version_info::Channel::DEV: |
return "google-chrome-unstable.desktop"; |
- case chrome::VersionInfo::CHANNEL_BETA: |
+ case version_info::Channel::BETA: |
return "google-chrome-beta.desktop"; |
default: |
return "google-chrome.desktop"; |