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

Side by Side Diff: chrome/common/chrome_version_info_chromeos.cc

Issue 1269773002: Cleanup VersionInfo after componentization. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/common/chrome_version_info.h"
6
7 namespace chrome {
8
9 static version_info::Channel chromeos_channel = version_info::Channel::UNKNOWN;
10
11 // static
12 std::string VersionInfo::GetVersionStringModifier() {
13 #if defined(GOOGLE_CHROME_BUILD)
14 switch (chromeos_channel) {
15 case version_info::Channel::STABLE:
16 return "";
17 case version_info::Channel::BETA:
18 return "beta";
19 case version_info::Channel::DEV:
20 return "dev";
21 case version_info::Channel::CANARY:
22 return "canary";
23 default:
24 return "unknown";
25 }
26 #endif
27 return std::string();
28 }
29
30 // static
31 version_info::Channel VersionInfo::GetChannel() {
32 return chromeos_channel;
33 }
34
35 // static
36 void VersionInfo::SetChannel(const std::string& channel) {
37 #if defined(GOOGLE_CHROME_BUILD)
38 if (channel == "stable-channel") {
39 chromeos_channel = version_info::Channel::STABLE;
40 } else if (channel == "beta-channel") {
41 chromeos_channel = version_info::Channel::BETA;
42 } else if (channel == "dev-channel") {
43 chromeos_channel = version_info::Channel::DEV;
44 } else if (channel == "canary-channel") {
45 chromeos_channel = version_info::Channel::CANARY;
46 }
47 #endif
48 }
49
50 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698