OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_COMMON_CHROME_VERSION_INFO_H_ | 5 #ifndef CHROME_COMMON_CHROME_VERSION_INFO_H_ |
6 #define CHROME_COMMON_CHROME_VERSION_INFO_H_ | 6 #define CHROME_COMMON_CHROME_VERSION_INFO_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/macros.h" |
| 11 #include "components/version_info/version_info.h" |
11 | 12 |
12 namespace chrome { | 13 namespace chrome { |
13 | 14 |
14 // An instance of chrome::VersionInfo has information about the | 15 // An instance of chrome::VersionInfo has information about the |
15 // current running build of Chrome. | 16 // current running build of Chrome. |
| 17 // TODO(sdefresne): this class should be removed in favor of calling directly |
| 18 // version_info free functions and this file should just provide method to |
| 19 // compute version string modifier (system dependent) and channel (embedder |
| 20 // dependent). Tracked by http://crbug.com/514562. |
16 class VersionInfo { | 21 class VersionInfo { |
17 public: | 22 public: |
18 // The possible channels for an installation, from most fun to most stable. | |
19 enum Channel { | |
20 CHANNEL_UNKNOWN = 0, // Probably blue | |
21 CHANNEL_CANARY, // Yellow | |
22 CHANNEL_DEV, // Technicolor | |
23 CHANNEL_BETA, // Rainbow | |
24 CHANNEL_STABLE // Full-spectrum | |
25 }; | |
26 | |
27 VersionInfo(); | 23 VersionInfo(); |
28 ~VersionInfo(); | 24 ~VersionInfo(); |
29 | 25 |
30 // E.g. "Chrome/a.b.c.d" | 26 // E.g. "Chrome/a.b.c.d" |
31 std::string ProductNameAndVersionForUserAgent() const; | 27 static std::string ProductNameAndVersionForUserAgent(); |
32 | 28 |
33 // E.g. "Chromium" or "Google Chrome". | 29 // E.g. "Chromium" or "Google Chrome". |
34 std::string Name() const; | 30 static std::string Name(); |
35 | 31 |
36 // Version number, e.g. "6.0.490.1". | 32 // Version number, e.g. "6.0.490.1". |
37 std::string Version() const; | 33 static std::string Version(); |
38 | 34 |
39 // The SVN revision of this release. E.g. "55800". | 35 // The SVN revision of this release. E.g. "55800". |
40 std::string LastChange() const; | 36 static std::string LastChange(); |
41 | 37 |
42 // Whether this is an "official" release of the current Version(): | 38 // Whether this is an "official" release of the current Version(): |
43 // whether knowing Version() is enough to completely determine what | 39 // whether knowing Version() is enough to completely determine what |
44 // LastChange() is. | 40 // LastChange() is. |
45 bool IsOfficialBuild() const; | 41 static bool IsOfficialBuild(); |
46 | 42 |
47 // OS type. E.g. "Windows", "Linux", "FreeBSD", ... | 43 // OS type. E.g. "Windows", "Linux", "FreeBSD", ... |
48 std::string OSType() const; | 44 static std::string OSType(); |
49 | 45 |
50 // Returns a human-readable modifier for the version string. For a branded | 46 // Returns a human-readable modifier for the version string. For a branded |
51 // build, this modifier is the channel ("canary", "dev", or "beta", but "" | 47 // build, this modifier is the channel ("canary", "dev", or "beta", but "" |
52 // for stable). On Windows, this may be modified with additional information | 48 // for stable). On Windows, this may be modified with additional information |
53 // after a hyphen. For multi-user installations, it will return "canary-m", | 49 // after a hyphen. For multi-user installations, it will return "canary-m", |
54 // "dev-m", "beta-m", and for a stable channel multi-user installation, "m". | 50 // "dev-m", "beta-m", and for a stable channel multi-user installation, "m". |
55 // In branded builds, when the channel cannot be determined, "unknown" will | 51 // In branded builds, when the channel cannot be determined, "unknown" will |
56 // be returned. In unbranded builds, the modifier is usually an empty string | 52 // be returned. In unbranded builds, the modifier is usually an empty string |
57 // (""), although on Linux, it may vary in certain distributions. | 53 // (""), although on Linux, it may vary in certain distributions. |
58 // GetVersionStringModifier() is intended to be used for display purposes. | 54 // GetVersionStringModifier() is intended to be used for display purposes. |
59 // To simply test the channel, use GetChannel(). | 55 // To simply test the channel, use GetChannel(). |
60 static std::string GetVersionStringModifier(); | 56 static std::string GetVersionStringModifier(); |
61 | 57 |
62 // Returns the channel for the installation. In branded builds, this will be | 58 // Returns the channel for the installation. In branded builds, this will be |
63 // CHANNEL_STABLE, CHANNEL_BETA, CHANNEL_DEV, or CHANNEL_CANARY. In unbranded | 59 // CHANNEL_STABLE, CHANNEL_BETA, CHANNEL_DEV, or CHANNEL_CANARY. In unbranded |
64 // builds, or in branded builds when the channel cannot be determined, this | 60 // builds, or in branded builds when the channel cannot be determined, this |
65 // will be CHANNEL_UNKNOWN. | 61 // will be CHANNEL_UNKNOWN. |
66 static Channel GetChannel(); | 62 static version_info::Channel GetChannel(); |
67 | 63 |
68 // Returns a string equivalent of the channel, independent of whether it is a | 64 // Returns a string equivalent of the channel, independent of whether it is a |
69 // branded build or not and without any additional modifiers. | 65 // branded build or not and without any additional modifiers. |
70 static std::string GetChannelString(); | 66 static std::string GetChannelString(); |
71 | 67 |
72 #if defined(OS_CHROMEOS) | 68 #if defined(OS_CHROMEOS) |
73 // Sets channel before use. | 69 // Sets channel before use. |
74 static void SetChannel(const std::string& channel); | 70 static void SetChannel(const std::string& channel); |
75 #endif | 71 #endif |
76 | 72 |
77 // Returns a version string to be displayed in "About Chromium" dialog. | 73 // Returns a version string to be displayed in "About Chromium" dialog. |
78 std::string CreateVersionString() const; | 74 static std::string CreateVersionString(); |
79 | 75 |
80 private: | 76 private: |
81 DISALLOW_COPY_AND_ASSIGN(VersionInfo); | 77 DISALLOW_COPY_AND_ASSIGN(VersionInfo); |
82 }; | 78 }; |
83 | 79 |
84 } // namespace chrome | 80 } // namespace chrome |
85 | 81 |
86 #endif // CHROME_COMMON_CHROME_VERSION_INFO_H_ | 82 #endif // CHROME_COMMON_CHROME_VERSION_INFO_H_ |
OLD | NEW |