| Index: chrome/browser/chrome_content_browser_client.cc
|
| diff --git a/chrome/browser/chrome_content_browser_client.cc b/chrome/browser/chrome_content_browser_client.cc
|
| index 36df8db91ba3642a5ac7f4eaa12127f536e1deb6..4d6d766ce20724d8dc7e8d46c2ea14cc9496ba52 100644
|
| --- a/chrome/browser/chrome_content_browser_client.cc
|
| +++ b/chrome/browser/chrome_content_browser_client.cc
|
| @@ -2344,12 +2344,12 @@ base::string16 ChromeContentBrowserClient::GetAppContainerSidForSandboxType(
|
| base::string16 sid;
|
|
|
| #if defined(GOOGLE_CHROME_BUILD)
|
| - const chrome::VersionInfo::Channel channel =
|
| + const version_info::Channel channel =
|
| chrome::VersionInfo::GetChannel();
|
|
|
| // It's possible to have a SxS installation running at the same time as a
|
| // non-SxS so isolate them from each other.
|
| - if (channel == chrome::VersionInfo::CHANNEL_CANARY) {
|
| + if (channel == version_info::CHANNEL_CANARY) {
|
| sid.assign(
|
| L"S-1-15-2-3251537155-1984446955-2931258699-841473695-1938553385-"
|
| L"924012150-");
|
| @@ -2537,13 +2537,13 @@ void ChromeContentBrowserClient::OverridePageVisibilityState(
|
| void ChromeContentBrowserClient::MaybeCopyDisableWebRtcEncryptionSwitch(
|
| base::CommandLine* to_command_line,
|
| const base::CommandLine& from_command_line,
|
| - VersionInfo::Channel channel) {
|
| + version_info::Channel channel) {
|
| #if defined(OS_ANDROID)
|
| - const VersionInfo::Channel kMaxDisableEncryptionChannel =
|
| - VersionInfo::CHANNEL_BETA;
|
| + const version_info::Channel kMaxDisableEncryptionChannel =
|
| + version_info::CHANNEL_BETA;
|
| #else
|
| - const VersionInfo::Channel kMaxDisableEncryptionChannel =
|
| - VersionInfo::CHANNEL_DEV;
|
| + const version_info::Channel kMaxDisableEncryptionChannel =
|
| + version_info::CHANNEL_DEV;
|
| #endif
|
| if (channel <= kMaxDisableEncryptionChannel) {
|
| static const char* const kWebRtcDevSwitchNames[] = {
|
|
|