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

Unified Diff: third_party/WebKit/Source/platform/exported/WebURLResponse.cpp

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
Index: third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
diff --git a/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp b/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
index a82fc6094fbecb5fa83bf3e3df7df88bfb3f3757..37cb7efd45267e787428643bc033e131c43a66e5 100644
--- a/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
+++ b/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
@@ -268,11 +268,11 @@ void WebURLResponse::setHasMajorCertificateErrors(bool value) {
m_resourceResponse->setHasMajorCertificateErrors(value);
}
-WebURLResponse::SecurityStyle WebURLResponse::getSecurityStyle() const {
- return static_cast<SecurityStyle>(m_resourceResponse->getSecurityStyle());
+WebSecurityStyle WebURLResponse::getSecurityStyle() const {
+ return static_cast<WebSecurityStyle>(m_resourceResponse->getSecurityStyle());
}
-void WebURLResponse::setSecurityStyle(SecurityStyle securityStyle) {
+void WebURLResponse::setSecurityStyle(WebSecurityStyle securityStyle) {
m_resourceResponse->setSecurityStyle(
static_cast<ResourceResponse::SecurityStyle>(securityStyle));
}
« no previous file with comments | « ios/chrome/browser/ssl/ios_chrome_security_state_model_client.mm ('k') | third_party/WebKit/public/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698