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

Unified Diff: chrome/browser/chrome_content_browser_client.cc

Issue 1257633002: Componentize VersionInfo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Convert version_info::Channel to a "class enum" 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/chrome_content_browser_client.cc
diff --git a/chrome/browser/chrome_content_browser_client.cc b/chrome/browser/chrome_content_browser_client.cc
index 8953d8e3adecfe43865d6fc7dfb47868b1a83485..110221b46c33dd020998977b04336a9d20f34f2f 100644
--- a/chrome/browser/chrome_content_browser_client.cc
+++ b/chrome/browser/chrome_content_browser_client.cc
@@ -2358,12 +2358,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-");
@@ -2551,13 +2551,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[] = {
« no previous file with comments | « chrome/browser/chrome_content_browser_client.h ('k') | chrome/browser/chrome_content_browser_client_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698