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

Side by Side Diff: components/version_info/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
(Empty)
1 // Copyright 2015 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 #ifndef COMPONENTS_VERSION_INFO_VERSION_INFO_H_
6 #define COMPONENTS_VERSION_INFO_VERSION_INFO_H_
7
8 #include <string>
9
10 #include "base/macros.h"
11
12 namespace version_info {
13
14 // The possible channels for an installation, from most fun to most stable.
15 enum Channel {
16 CHANNEL_UNKNOWN = 0, // Probably blue
brettw 2015/07/27 19:42:32 These comments copied from the old file seem prett
sdefresne 2015/07/28 08:58:26 Done.
17 CHANNEL_CANARY, // Yellow
18 CHANNEL_DEV, // Technicolor
19 CHANNEL_BETA, // Rainbow
20 CHANNEL_STABLE // Full-spectrum
21 };
22
23 // Returns the product name and version information for UserAgent header,
24 // e.g. "Chrome/a.b.c.d".
25 std::string GetProductNameAndVersionForUserAgent();
26
27 // Returns the product name, e.g. "Chromium" or "Google Chrome".
28 std::string GetProductName();
29
30 // Returns the version number, e.g. "6.0.490.1".
31 std::string GetVersionNumber();
32
33 // Returns a version control specific identifier of this release.
34 std::string GetLastChange();
35
36 // Returns whether this is an "official" release of the current version, i.e.
37 // whether kwnowing GetVersionNumber() is enough to completely determine what
38 // GetLastChange() is.
39 bool IsOfficialBuild();
40
41 // Returns the OS type, e.g. "Windows", "Linux", "FreeBDS", ...
42 std::string GetOSType();
43
44 // Returns a string equivalent of |channel|, indenpendent of whether the build
45 // is branded or not and without any additional modifiers.
46 std::string GetChannelString(Channel channel);
47
48 // Returns a version string to be displayed in "About Chromium" dialog, with
49 // an extra |modifier| which may be empty.
brettw 2015/07/27 19:42:32 Can you clarify what "modifier" means in this cont
sdefresne 2015/07/28 08:58:26 Done. Is this better?
50 std::string GetVersionStringWithModifier(const std::string& modifier);
51
52 } // namespace version_info
53
54 #endif // COMPONENTS_VERSION_INFO_VERSION_INFO_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698