-
Notifications
You must be signed in to change notification settings - Fork 920
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't include Android model by default
- Loading branch information
1 parent
ffe62ce
commit db2107c
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/content/common/user_agent.cc b/content/common/user_agent.cc | ||
index a87ca565f8aa809a46086861c7057da013e9c911..ab271cb3020eb79fa34cd9d0c675aaecd01faad3 100644 | ||
--- a/content/common/user_agent.cc | ||
+++ b/content/common/user_agent.cc | ||
@@ -233,7 +233,7 @@ std::string BuildUserAgentFromProduct(const std::string& product) { | ||
std::string os_info; | ||
base::StringAppendF(&os_info, "%s%s", GetUserAgentPlatform().c_str(), | ||
BuildOSCpuInfo(IncludeAndroidBuildNumber::Exclude, | ||
- IncludeAndroidModel::Include) | ||
+ IncludeAndroidModel::Exclude) | ||
.c_str()); | ||
return BuildUserAgentFromOSAndProduct(os_info, product); | ||
} |