--- chromium-browser-11.0.691.0~svn20110304r76865/src/webkit/glue/user_agent.cc~ 2011-03-04 05:00:41.000000000 +0200 +++ chromium-browser-11.0.691.0~svn20110304r76865/src/webkit/glue/user_agent.cc 2011-03-04 18:55:33.180524092 +0200 @@ -102,15 +102,22 @@ // maximally compatible with Safari, we hope!! std::string product = GetProductVersion(); + // We want to also add Chromium + std::string realproduct = product.c_str(); + size_t pos; + if ((pos = realproduct.find("/")) != std::string::npos) + realproduct.replace(0, pos, "Chromium"); + // Derived from Safari's UA string. base::StringAppendF( &user_agent, "Mozilla/5.0 (%s%s) AppleWebKit/%d.%d" - " (KHTML, like Gecko) %s Safari/%d.%d", + " (KHTML, like Gecko) @BUILD_DIST_NAME@/@BUILD_DIST_VERSION@ %s %s Safari/%d.%d", mimic_windows ? "Windows " : kUserAgentPlatform, webkit_glue::BuildOSCpuInfo().c_str(), WEBKIT_VERSION_MAJOR, WEBKIT_VERSION_MINOR, + realproduct.c_str(), product.c_str(), WEBKIT_VERSION_MAJOR, WEBKIT_VERSION_MINOR);