Commit 38b0a899 authored by gunsch's avatar gunsch Committed by Commit bot

Chromecast: User-Agent string should have "/" before build number.

R=lcwu@chromium.org
BUG=None

Review URL: https://codereview.chromium.org/616943002

Cr-Commit-Position: refs/heads/master@{#297454}
parent e84ed4a9
...@@ -15,7 +15,7 @@ namespace shell { ...@@ -15,7 +15,7 @@ namespace shell {
std::string GetUserAgent() { std::string GetUserAgent() {
std::string product = "Chrome/" PRODUCT_VERSION; std::string product = "Chrome/" PRODUCT_VERSION;
return content::BuildUserAgentFromProduct(product) + return content::BuildUserAgentFromProduct(product) +
" CrKey" CAST_BUILD_REVISION; " CrKey/" CAST_BUILD_REVISION;
} }
CastContentClient::~CastContentClient() { CastContentClient::~CastContentClient() {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment