| Index: content/child/site_isolation_policy.h
|
| diff --git a/content/child/site_isolation_policy.h b/content/child/site_isolation_policy.h
|
| index 961193ba3a01d606721c8ce4c2fca79121a620c0..6c48697b596b36f7c7a6d4d777cc7eaef9824180 100644
|
| --- a/content/child/site_isolation_policy.h
|
| +++ b/content/child/site_isolation_policy.h
|
| @@ -16,12 +16,10 @@
|
|
|
| class GURL;
|
|
|
| -namespace webkit_glue {
|
| -struct ResourceResponseInfo;
|
| -}
|
| -
|
| namespace content {
|
|
|
| +struct ResourceResponseInfo;
|
| +
|
| // SiteIsolationPolicy implements the cross-site document blocking policy (XSDP)
|
| // for Site Isolation. XSDP will monitor network responses to a renderer and
|
| // block illegal responses so that a compromised renderer cannot steal private
|
| @@ -86,9 +84,11 @@ class CONTENT_EXPORT SiteIsolationPolicy {
|
| // request identified by |request_id|. Any data returned should then be
|
| // passed to ShouldBlockResponse with the first packet.
|
| static linked_ptr<SiteIsolationResponseMetaData> OnReceivedResponse(
|
| - const GURL& frame_origin, const GURL& response_url,
|
| - ResourceType::Type resource_type, int origin_pid,
|
| - const webkit_glue::ResourceResponseInfo& info);
|
| + const GURL& frame_origin,
|
| + const GURL& response_url,
|
| + ResourceType::Type resource_type,
|
| + int origin_pid,
|
| + const ResourceResponseInfo& info);
|
|
|
| // Examines the first network packet in case response_url is registered as a
|
| // cross-site document by DidReceiveResponse(). In case that this response is
|
|
|