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

Side by Side Diff: chrome/common/chrome_version_info.h

Issue 1257633002: Componentize VersionInfo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix OWNERS (copy from //chrome/OWNERS) 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
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 "components/version_info/version_info.h"
11 11
12 namespace chrome { 12 namespace chrome {
13 13
14 // An instance of chrome::VersionInfo has information about the 14 // An instance of chrome::VersionInfo has information about the
15 // current running build of Chrome. 15 // current running build of Chrome.
16 class VersionInfo { 16 class VersionInfo {
brettw 2015/07/27 19:42:31 I think this class should be deleted, or maybe ren
sdefresne 2015/07/28 08:58:26 It makes sense. Created https://code.google.com/p/
17 public: 17 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(); 18 VersionInfo();
28 ~VersionInfo(); 19 ~VersionInfo();
29 20
30 // E.g. "Chrome/a.b.c.d" 21 // E.g. "Chrome/a.b.c.d"
31 std::string ProductNameAndVersionForUserAgent() const; 22 static std::string ProductNameAndVersionForUserAgent();
32 23
33 // E.g. "Chromium" or "Google Chrome". 24 // E.g. "Chromium" or "Google Chrome".
34 std::string Name() const; 25 static std::string Name();
35 26
36 // Version number, e.g. "6.0.490.1". 27 // Version number, e.g. "6.0.490.1".
37 std::string Version() const; 28 static std::string Version();
38 29
39 // The SVN revision of this release. E.g. "55800". 30 // The SVN revision of this release. E.g. "55800".
40 std::string LastChange() const; 31 static std::string LastChange();
41 32
42 // Whether this is an "official" release of the current Version(): 33 // Whether this is an "official" release of the current Version():
43 // whether knowing Version() is enough to completely determine what 34 // whether knowing Version() is enough to completely determine what
44 // LastChange() is. 35 // LastChange() is.
45 bool IsOfficialBuild() const; 36 static bool IsOfficialBuild();
46 37
47 // OS type. E.g. "Windows", "Linux", "FreeBSD", ... 38 // OS type. E.g. "Windows", "Linux", "FreeBSD", ...
48 std::string OSType() const; 39 static std::string OSType();
49 40
50 // Returns a human-readable modifier for the version string. For a branded 41 // Returns a human-readable modifier for the version string. For a branded
51 // build, this modifier is the channel ("canary", "dev", or "beta", but "" 42 // build, this modifier is the channel ("canary", "dev", or "beta", but ""
52 // for stable). On Windows, this may be modified with additional information 43 // for stable). On Windows, this may be modified with additional information
53 // after a hyphen. For multi-user installations, it will return "canary-m", 44 // 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". 45 // "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 46 // In branded builds, when the channel cannot be determined, "unknown" will
56 // be returned. In unbranded builds, the modifier is usually an empty string 47 // be returned. In unbranded builds, the modifier is usually an empty string
57 // (""), although on Linux, it may vary in certain distributions. 48 // (""), although on Linux, it may vary in certain distributions.
58 // GetVersionStringModifier() is intended to be used for display purposes. 49 // GetVersionStringModifier() is intended to be used for display purposes.
59 // To simply test the channel, use GetChannel(). 50 // To simply test the channel, use GetChannel().
60 static std::string GetVersionStringModifier(); 51 static std::string GetVersionStringModifier();
61 52
62 // Returns the channel for the installation. In branded builds, this will be 53 // Returns the channel for the installation. In branded builds, this will be
63 // CHANNEL_STABLE, CHANNEL_BETA, CHANNEL_DEV, or CHANNEL_CANARY. In unbranded 54 // CHANNEL_STABLE, CHANNEL_BETA, CHANNEL_DEV, or CHANNEL_CANARY. In unbranded
64 // builds, or in branded builds when the channel cannot be determined, this 55 // builds, or in branded builds when the channel cannot be determined, this
65 // will be CHANNEL_UNKNOWN. 56 // will be CHANNEL_UNKNOWN.
66 static Channel GetChannel(); 57 static version_info::Channel GetChannel();
67 58
68 // Returns a string equivalent of the channel, independent of whether it is a 59 // Returns a string equivalent of the channel, independent of whether it is a
69 // branded build or not and without any additional modifiers. 60 // branded build or not and without any additional modifiers.
70 static std::string GetChannelString(); 61 static std::string GetChannelString();
71 62
72 #if defined(OS_CHROMEOS) 63 #if defined(OS_CHROMEOS)
73 // Sets channel before use. 64 // Sets channel before use.
74 static void SetChannel(const std::string& channel); 65 static void SetChannel(const std::string& channel);
75 #endif 66 #endif
76 67
77 // Returns a version string to be displayed in "About Chromium" dialog. 68 // Returns a version string to be displayed in "About Chromium" dialog.
78 std::string CreateVersionString() const; 69 static std::string CreateVersionString();
79 70
80 private: 71 private:
81 DISALLOW_COPY_AND_ASSIGN(VersionInfo); 72 DISALLOW_COPY_AND_ASSIGN(VersionInfo);
82 }; 73 };
83 74
84 } // namespace chrome 75 } // namespace chrome
85 76
86 #endif // CHROME_COMMON_CHROME_VERSION_INFO_H_ 77 #endif // CHROME_COMMON_CHROME_VERSION_INFO_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698