mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
| diff --git components/embedder_support/user_agent_utils.cc components/embedder_support/user_agent_utils.cc
 | |
| index a001f60b279ed..b0ee6283be54f 100644
 | |
| --- components/embedder_support/user_agent_utils.cc
 | |
| +++ components/embedder_support/user_agent_utils.cc
 | |
| @@ -15,6 +15,7 @@
 | |
|  #include "base/version.h"
 | |
|  #include "build/branding_buildflags.h"
 | |
|  #include "build/build_config.h"
 | |
| +#include "cef/libcef/common/cef_switches.h"
 | |
|  #include "components/embedder_support/switches.h"
 | |
|  #include "components/policy/core/common/policy_pref_names.h"
 | |
|  #include "components/prefs/pref_service.h"
 | |
| @@ -276,6 +277,12 @@ blink::UserAgentBrandList GetBrandFullVersionList(
 | |
|  }  // namespace
 | |
|  
 | |
|  std::string GetProduct(const bool allow_version_override) {
 | |
| +  base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
 | |
| +  if (command_line->HasSwitch(switches::kUserAgentProductAndVersion)) {
 | |
| +    return command_line->GetSwitchValueASCII(
 | |
| +        switches::kUserAgentProductAndVersion);
 | |
| +  }
 | |
| +
 | |
|    // FF Priority 1: force major version to 99 and minor version to major version
 | |
|    // number.
 | |
|    if (allow_version_override &&
 |