| Index: chrome/browser/shell_integration_linux.cc
|
| diff --git a/chrome/browser/shell_integration_linux.cc b/chrome/browser/shell_integration_linux.cc
|
| index 3c646b3ba2181466505f12b63a7b2182641eab81..17fe4ef94af3f264f8dc0fa073aed748d45e88ac 100644
|
| --- a/chrome/browser/shell_integration_linux.cc
|
| +++ b/chrome/browser/shell_integration_linux.cc
|
| @@ -42,9 +42,10 @@
|
| #include "base/threading/thread_restrictions.h"
|
| #include "build/build_config.h"
|
| #include "chrome/browser/shell_integration.h"
|
| +#include "chrome/common/channel_info.h"
|
| #include "chrome/common/chrome_constants.h"
|
| #include "chrome/common/chrome_switches.h"
|
| -#include "chrome/common/chrome_version_info.h"
|
| +#include "components/version_info/version_info.h"
|
| #include "content/public/browser/browser_thread.h"
|
| #include "grit/chrome_unscaled_resources.h"
|
| #include "ui/base/resource/resource_bundle.h"
|
| @@ -586,8 +587,7 @@ std::string GetProgramClassName() {
|
|
|
| std::string GetDesktopName(base::Environment* env) {
|
| #if defined(GOOGLE_CHROME_BUILD)
|
| - version_info::Channel product_channel(
|
| - chrome::VersionInfo::GetChannel());
|
| + version_info::Channel product_channel(chrome::GetChannel());
|
| switch (product_channel) {
|
| case version_info::Channel::DEV:
|
| return "google-chrome-unstable.desktop";
|
|
|