| Index: third_party/WebKit/Source/core/inspector/InspectorResourceAgent.cpp
|
| diff --git a/third_party/WebKit/Source/core/inspector/InspectorResourceAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorResourceAgent.cpp
|
| index 6f067e39c18a099a5b0458b78d0ea3e0ff92a906..b655637b9893c4e7f515b6ba8d9d6c78783cab49 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorResourceAgent.cpp
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorResourceAgent.cpp
|
| @@ -310,7 +310,7 @@ static PassOwnPtr<protocol::Network::Response> buildObjectForResourceResponse(co
|
| int64_t encodedDataLength = response.resourceLoadInfo() ? response.resourceLoadInfo()->encodedDataLength : -1;
|
|
|
| String securityState = protocol::Security::SecurityStateEnum::Unknown;
|
| - switch (response.securityStyle()) {
|
| + switch (response.getSecurityStyle()) {
|
| case ResourceResponse::SecurityStyleUnknown:
|
| securityState = protocol::Security::SecurityStateEnum::Unknown;
|
| break;
|
| @@ -387,8 +387,8 @@ static PassOwnPtr<protocol::Network::Response> buildObjectForResourceResponse(co
|
| }
|
| responseObject->setProtocol(protocol);
|
|
|
| - if (response.securityStyle() != ResourceResponse::SecurityStyleUnknown
|
| - && response.securityStyle() != ResourceResponse::SecurityStyleUnauthenticated) {
|
| + if (response.getSecurityStyle() != ResourceResponse::SecurityStyleUnknown
|
| + && response.getSecurityStyle() != ResourceResponse::SecurityStyleUnauthenticated) {
|
|
|
| const ResourceResponse::SecurityDetails* responseSecurityDetails = response.securityDetails();
|
|
|
|
|