blob: 82c4b92604958759c95a66b1f2668a126ea85040 (
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
|
// Copyright (c) 2012 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/android/build_info.h"
#include "base/logging.h"
#include "base/string_util.h"
namespace chrome {
// static
std::string VersionInfo::GetVersionStringModifier() {
switch (GetChannel()) {
case CHANNEL_UNKNOWN: return "unknown";
case CHANNEL_CANARY: return "canary";
case CHANNEL_DEV: return "dev";
case CHANNEL_BETA: return "beta";
case CHANNEL_STABLE: return std::string();
}
NOTREACHED() << "Unknown channel " << GetChannel();
return std::string();
}
// static
VersionInfo::Channel VersionInfo::GetChannel() {
const base::android::BuildInfo* bi = base::android::BuildInfo::GetInstance();
DCHECK(bi && bi->package_name());
if (!strcmp(bi->package_name(), "com.android.chrome"))
return CHANNEL_STABLE;
if (!strcmp(bi->package_name(), "com.chrome.beta"))
return CHANNEL_BETA;
if (!strcmp(bi->package_name(), "com.google.android.apps.chrome_dev"))
return CHANNEL_DEV;
return CHANNEL_UNKNOWN;
}
} // namespace chrome
|