2021-03-04 23:36:57 +01:00
|
|
|
diff --git components/embedder_support/user_agent_utils.cc components/embedder_support/user_agent_utils.cc
|
2021-12-16 23:35:54 +01:00
|
|
|
index 1876f324468dc..f22b44017b38a 100644
|
2021-03-04 23:36:57 +01:00
|
|
|
--- components/embedder_support/user_agent_utils.cc
|
|
|
|
+++ components/embedder_support/user_agent_utils.cc
|
2021-12-16 23:35:54 +01:00
|
|
|
@@ -15,6 +15,7 @@
|
2021-10-19 00:17:16 +02:00
|
|
|
#include "base/version.h"
|
2021-03-04 23:36:57 +01:00
|
|
|
#include "build/branding_buildflags.h"
|
2021-09-20 11:06:23 +02:00
|
|
|
#include "build/build_config.h"
|
2021-04-27 18:39:09 +02:00
|
|
|
+#include "cef/libcef/common/cef_switches.h"
|
2021-03-04 23:36:57 +01:00
|
|
|
#include "components/embedder_support/switches.h"
|
2021-11-10 22:57:31 +01:00
|
|
|
#include "components/policy/core/common/policy_pref_names.h"
|
|
|
|
#include "components/prefs/pref_service.h"
|
2021-12-16 23:35:54 +01:00
|
|
|
@@ -234,6 +235,12 @@ const blink::UserAgentBrandList& GetBrandFullVersionList(
|
|
|
|
}
|
2021-03-04 23:36:57 +01:00
|
|
|
|
2021-12-16 23:35:54 +01:00
|
|
|
std::string GetProduct(const bool allow_version_override) {
|
2021-03-04 23:36:57 +01:00
|
|
|
+ base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
|
2021-04-27 18:39:09 +02:00
|
|
|
+ if (command_line->HasSwitch(switches::kUserAgentProductAndVersion)) {
|
|
|
|
+ return command_line->GetSwitchValueASCII(
|
|
|
|
+ switches::kUserAgentProductAndVersion);
|
|
|
|
+ }
|
2021-03-04 23:36:57 +01:00
|
|
|
+
|
2021-12-16 23:35:54 +01:00
|
|
|
if (allow_version_override &&
|
|
|
|
base::FeatureList::IsEnabled(
|
2021-10-19 00:17:16 +02:00
|
|
|
blink::features::kForceMajorVersion100InUserAgent))
|