| Index: content/public/browser/web_contents_delegate.cc
|
| diff --git a/content/public/browser/web_contents_delegate.cc b/content/public/browser/web_contents_delegate.cc
|
| index 966258027a7d1565951ac135a32d589829259615..050f1a7a530e161a23cc974132105bcc765bfcd1 100644
|
| --- a/content/public/browser/web_contents_delegate.cc
|
| +++ b/content/public/browser/web_contents_delegate.cc
|
| @@ -12,7 +12,6 @@
|
| #include "content/public/browser/security_style_explanations.h"
|
| #include "content/public/browser/web_contents.h"
|
| #include "content/public/common/bindings_policy.h"
|
| -#include "content/public/common/security_style.h"
|
| #include "content/public/common/url_constants.h"
|
| #include "net/cert/x509_certificate.h"
|
| #include "ui/gfx/geometry/rect.h"
|
| @@ -255,10 +254,10 @@ bool WebContentsDelegate::SaveFrame(const GURL& url, const Referrer& referrer) {
|
| return false;
|
| }
|
|
|
| -SecurityStyle WebContentsDelegate::GetSecurityStyle(
|
| +blink::WebSecurityStyle WebContentsDelegate::GetSecurityStyle(
|
| WebContents* web_contents,
|
| SecurityStyleExplanations* security_style_explanations) {
|
| - return content::SECURITY_STYLE_UNKNOWN;
|
| + return blink::WebSecurityStyleUnknown;
|
| }
|
|
|
| void WebContentsDelegate::ShowCertificateViewerInDevTools(
|
|
|