aboutsummaryrefslogtreecommitdiff
path: root/www/ungoogled-chromium/files/patch-components_version__info_version__info.h
diff options
context:
space:
mode:
Diffstat (limited to 'www/ungoogled-chromium/files/patch-components_version__info_version__info.h')
-rw-r--r--www/ungoogled-chromium/files/patch-components_version__info_version__info.h145
1 files changed, 145 insertions, 0 deletions
diff --git a/www/ungoogled-chromium/files/patch-components_version__info_version__info.h b/www/ungoogled-chromium/files/patch-components_version__info_version__info.h
new file mode 100644
index 000000000000..335d9e3557d6
--- /dev/null
+++ b/www/ungoogled-chromium/files/patch-components_version__info_version__info.h
@@ -0,0 +1,145 @@
+--- components/version_info/version_info.h.orig 2023-05-05 12:12:41 UTC
++++ components/version_info/version_info.h
+@@ -7,12 +7,7 @@
+
+ #include <string>
+
+-#include "base/notreached.h"
+-#include "base/sanitizer_buildflags.h"
+-#include "build/branding_buildflags.h"
+-#include "build/build_config.h"
+ #include "components/version_info/channel.h"
+-#include "components/version_info/version_info_values.h"
+
+ namespace base {
+ class Version;
+@@ -20,6 +15,10 @@ class Version;
+
+ namespace version_info {
+
++// Returns the product name and version information for the User-Agent header,
++// in the format: Chrome/<major_version>.<minor_version>.<build>.<patch>.
++const std::string& GetProductNameAndVersionForUserAgent();
++
+ // Returns the product name and reduced version information for the User-Agent
+ // header, in the format: Chrome/<major_version>.0.build_version.0, where
+ // `build_version` is a frozen BUILD number.
+@@ -27,21 +26,11 @@ const std::string GetProductNameAndVersionForReducedUs
+ const std::string& build_version);
+
+ // Returns the product name, e.g. "Chromium" or "Google Chrome".
+-constexpr std::string GetProductName() {
+- return PRODUCT_NAME;
+-}
++std::string GetProductName();
+
+ // Returns the version number, e.g. "6.0.490.1".
+-constexpr std::string GetVersionNumber() {
+- return PRODUCT_VERSION;
+-}
++std::string GetVersionNumber();
+
+-// Returns the product name and version information for the User-Agent header,
+-// in the format: Chrome/<major_version>.<minor_version>.<build>.<patch>.
+-constexpr std::string GetProductNameAndVersionForUserAgent() {
+- return "Chrome/" + GetVersionNumber();
+-}
+-
+ // Returns the major component (aka the milestone) of the version as an int,
+ // e.g. 6 when the version is "6.0.490.1".
+ int GetMajorVersionNumberAsInt();
+@@ -53,89 +42,22 @@ std::string GetMajorVersionNumber();
+ const base::Version& GetVersion();
+
+ // Returns a version control specific identifier of this release.
+-constexpr std::string GetLastChange() {
+- return LAST_CHANGE;
+-}
++std::string GetLastChange();
+
+ // Returns whether this is an "official" release of the current version, i.e.
+ // whether knowing GetVersionNumber() is enough to completely determine what
+ // GetLastChange() is.
+-constexpr bool IsOfficialBuild() {
+- return IS_OFFICIAL_BUILD;
+-}
++bool IsOfficialBuild();
+
+ // Returns the OS type, e.g. "Windows", "Linux", "FreeBSD", ...
+-constexpr std::string GetOSType() {
+-#if BUILDFLAG(IS_WIN)
+- return "Windows";
+-#elif BUILDFLAG(IS_IOS)
+- return "iOS";
+-#elif BUILDFLAG(IS_MAC)
+- return "Mac OS X";
+-#elif BUILDFLAG(IS_CHROMEOS)
+-#if BUILDFLAG(GOOGLE_CHROME_BRANDING)
+- return "ChromeOS";
+-#else
+- return "ChromiumOS";
+-#endif
+-#elif BUILDFLAG(IS_ANDROID)
+- return "Android";
+-#elif BUILDFLAG(IS_LINUX)
+- return "Linux";
+-#elif BUILDFLAG(IS_FREEBSD)
+- return "FreeBSD";
+-#elif BUILDFLAG(IS_OPENBSD)
+- return "OpenBSD";
+-#elif BUILDFLAG(IS_SOLARIS)
+- return "Solaris";
+-#elif BUILDFLAG(IS_FUCHSIA)
+- return "Fuchsia";
+-#else
+- return "Unknown";
+-#endif
+-}
++std::string GetOSType();
+
+ // Returns a string equivalent of |channel|, independent of whether the build
+ // is branded or not and without any additional modifiers.
+-constexpr std::string GetChannelString(Channel channel) {
+- switch (channel) {
+- case Channel::STABLE:
+- return "stable";
+- case Channel::BETA:
+- return "beta";
+- case Channel::DEV:
+- return "dev";
+- case Channel::CANARY:
+- return "canary";
+- case Channel::UNKNOWN:
+- return "unknown";
+- }
+- NOTREACHED_NORETURN();
+-}
++std::string GetChannelString(Channel channel);
+
+ // Returns a list of sanitizers enabled in this build.
+-constexpr std::string GetSanitizerList() {
+- return ""
+-#if defined(ADDRESS_SANITIZER)
+- "address "
+-#endif
+-#if BUILDFLAG(IS_HWASAN)
+- "hwaddress "
+-#endif
+-#if defined(LEAK_SANITIZER)
+- "leak "
+-#endif
+-#if defined(MEMORY_SANITIZER)
+- "memory "
+-#endif
+-#if defined(THREAD_SANITIZER)
+- "thread "
+-#endif
+-#if defined(UNDEFINED_SANITIZER)
+- "undefined "
+-#endif
+- ;
+-}
++std::string GetSanitizerList();
+
+ } // namespace version_info
+