| Index: ios/web/web_state/web_view_internal_creation_util.mm
|
| diff --git a/ios/web/web_state/web_view_internal_creation_util.mm b/ios/web/web_state/web_view_internal_creation_util.mm
|
| index 59ff848827db4e88498c12062a89ec4627d06a95..c13b8b77713499d7c5a241e873d4340c49f51173 100644
|
| --- a/ios/web/web_state/web_view_internal_creation_util.mm
|
| +++ b/ios/web/web_state/web_view_internal_creation_util.mm
|
| @@ -45,8 +45,10 @@ void VerifyWKWebViewCreationPreConditions(
|
| [[WKWebView alloc] initWithFrame:frame configuration:configuration];
|
|
|
| // Set the user agent.
|
| + UserAgentType user_agent_type =
|
| + use_desktop_user_agent ? UserAgentType::DESKTOP : UserAgentType::MOBILE;
|
| web_view.customUserAgent = base::SysUTF8ToNSString(
|
| - web::GetWebClient()->GetUserAgent(use_desktop_user_agent));
|
| + web::GetWebClient()->GetUserAgent(user_agent_type));
|
|
|
| // By default the web view uses a very sluggish scroll speed. Set it to a more
|
| // reasonable value.
|
|
|