Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1215)

Unified Diff: content/public/browser/web_contents_delegate.cc

Issue 2400673003: Remove SSLStatus::security_style member and content::SecurityStyle (Closed)
Patch Set: more curly braces Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/public/browser/web_contents_delegate.h ('k') | content/public/browser/web_contents_observer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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(
« no previous file with comments | « content/public/browser/web_contents_delegate.h ('k') | content/public/browser/web_contents_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698