| Index: chrome/common/chrome_content_client.cc
|
| diff --git a/chrome/common/chrome_content_client.cc b/chrome/common/chrome_content_client.cc
|
| index e086d765e8da6acea54618bd7db81e186399842b..05f9947680f07fb636eafc5497717ac8ede56d20 100644
|
| --- a/chrome/common/chrome_content_client.cc
|
| +++ b/chrome/common/chrome_content_client.cc
|
| @@ -438,7 +438,7 @@ std::string ChromeContentClient::GetUserAgent() const {
|
| product += version_info.is_valid() ? version_info.Version() : "0.0.0.0";
|
| #if defined(OS_ANDROID)
|
| CommandLine* command_line = CommandLine::ForCurrentProcess();
|
| - if (!command_line->HasSwitch(switches::kUseMobileUserAgent)) {
|
| + if (command_line->HasSwitch(switches::kUseMobileUserAgent)) {
|
| product += " Mobile";
|
| }
|
| #endif
|
|
|