| 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));
|
| }
|
|
|