| Index: chrome/browser/android/vr_shell/vr_web_contents_observer.cc
|
| diff --git a/chrome/browser/android/vr_shell/vr_web_contents_observer.cc b/chrome/browser/android/vr_shell/vr_web_contents_observer.cc
|
| index 2545d3d2391f418146322bc244e048dbdc61fa57..0a60565bddff8f41ffaff9be4f9846f98fb59e6a 100644
|
| --- a/chrome/browser/android/vr_shell/vr_web_contents_observer.cc
|
| +++ b/chrome/browser/android/vr_shell/vr_web_contents_observer.cc
|
| @@ -65,7 +65,9 @@ void VrWebContentsObserver::DidChangeVisibleSecurityState() {
|
| DCHECK(helper);
|
| security_state::SecurityInfo security_info;
|
| helper->GetSecurityInfo(&security_info);
|
| - ui_interface_->SetSecurityLevel(security_info.security_level);
|
| + bool malware = (security_info.malicious_content_status !=
|
| + security_state::MALICIOUS_CONTENT_STATUS_NONE);
|
| + ui_interface_->SetSecurityInfo(security_info.security_level, malware);
|
| }
|
|
|
| void VrWebContentsObserver::DidToggleFullscreenModeForTab(
|
|
|