| Index: chrome/renderer/security_filter_peer.cc
|
| diff --git a/chrome/renderer/security_filter_peer.cc b/chrome/renderer/security_filter_peer.cc
|
| index c43b451caaf0939eafc86b105fbaffb75e3a240a..ad76a315c2c51a905f79d1a1d6d018633bcda995 100644
|
| --- a/chrome/renderer/security_filter_peer.cc
|
| +++ b/chrome/renderer/security_filter_peer.cc
|
| @@ -21,7 +21,7 @@ SecurityFilterPeer::~SecurityFilterPeer() {
|
| // static
|
| SecurityFilterPeer*
|
| SecurityFilterPeer::CreateSecurityFilterPeerForDeniedRequest(
|
| - ResourceType::Type resource_type,
|
| + content::ResourceType::Type resource_type,
|
| content::RequestPeer* peer,
|
| int os_error) {
|
| // Create a filter for SSL and CERT errors.
|
| @@ -40,7 +40,7 @@ SecurityFilterPeer::CreateSecurityFilterPeerForDeniedRequest(
|
| case net::ERR_CERT_NAME_CONSTRAINT_VIOLATION:
|
| case net::ERR_INSECURE_RESPONSE:
|
| case net::ERR_SSL_PINNED_KEY_NOT_IN_CERT_CHAIN:
|
| - if (ResourceType::IsFrame(resource_type))
|
| + if (content::ResourceType::IsFrame(resource_type))
|
| return CreateSecurityFilterPeerForFrame(peer, os_error);
|
| // Any other content is entirely filtered-out.
|
| return new ReplaceContentPeer(peer, std::string(), std::string());
|
|
|