blob: 98aa72f7eb5273fb6d7e2a7ac9536fc6b4ca9357 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/common/chrome_version_info.h"
#include "base/strings/string_util.h"
#include "build/build_config.h"
namespace chrome {
// static
std::string VersionInfo::GetVersionStringModifier() {
char* env = getenv("CHROME_VERSION_EXTRA");
if (!env)
return std::string();
std::string modifier(env);
#if defined(GOOGLE_CHROME_BUILD)
// Only ever return "", "unknown", "dev" or "beta" in a branded build.
if (modifier == "unstable") // linux version of "dev"
modifier = "dev";
if (modifier == "stable") {
modifier = "";
} else if ((modifier == "dev") || (modifier == "beta")) {
// do nothing.
} else {
modifier = "unknown";
}
#endif
return modifier;
}
// static
VersionInfo::Channel VersionInfo::GetChannel() {
#if defined(GOOGLE_CHROME_BUILD)
std::string channel = GetVersionStringModifier();
// There might be suffixes after channel name (e.g. "aura"), so match just
// the beginning of version string modifier.
if (channel.empty()) {
return CHANNEL_STABLE;
} else if (StartsWithASCII(channel, "beta ", true)) {
return CHANNEL_BETA;
} else if (StartsWithASCII(channel, "dev ", true)) {
return CHANNEL_DEV;
} else if (StartsWithASCII(channel, "canary ", true)) {
return CHANNEL_CANARY;
}
#endif
return CHANNEL_UNKNOWN;
}
} // namespace chrome
|