| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 DocumentLoader* MasterDocumentLoader() const; | 167 DocumentLoader* MasterDocumentLoader() const; |
| 168 Document* GetDocument() const; | 168 Document* GetDocument() const; |
| 169 LocalFrame* GetFrame() const; | 169 LocalFrame* GetFrame() const; |
| 170 LocalFrameClient* GetLocalFrameClient() const; | 170 LocalFrameClient* GetLocalFrameClient() const; |
| 171 LocalFrame* FrameOfImportsController() const; | 171 LocalFrame* FrameOfImportsController() const; |
| 172 | 172 |
| 173 // BaseFetchContext overrides: | 173 // BaseFetchContext overrides: |
| 174 ContentSettingsClient* GetContentSettingsClient() const override; | 174 ContentSettingsClient* GetContentSettingsClient() const override; |
| 175 Settings* GetSettings() const override; | 175 Settings* GetSettings() const override; |
| 176 SubresourceFilter* GetSubresourceFilter() const override; | 176 SubresourceFilter* GetSubresourceFilter() const override; |
| 177 SecurityContext* GetMainResourceSecurityContext() const override; | 177 SecurityContext* GetParentSecurityContext() const override; |
| 178 bool ShouldBlockRequestByInspector(const ResourceRequest&) const override; | 178 bool ShouldBlockRequestByInspector(const ResourceRequest&) const override; |
| 179 void DispatchDidBlockRequest(const ResourceRequest&, | 179 void DispatchDidBlockRequest(const ResourceRequest&, |
| 180 const FetchInitiatorInfo&, | 180 const FetchInitiatorInfo&, |
| 181 ResourceRequestBlockedReason) const override; | 181 ResourceRequestBlockedReason) const override; |
| 182 void ReportLocalLoadFailed(const KURL&) const override; | 182 void ReportLocalLoadFailed(const KURL&) const override; |
| 183 bool ShouldBypassMainWorldCSP() const override; | 183 bool ShouldBypassMainWorldCSP() const override; |
| 184 bool IsSVGImageChromeClient() const override; | 184 bool IsSVGImageChromeClient() const override; |
| 185 void CountUsage(UseCounter::Feature) const override; | 185 void CountUsage(UseCounter::Feature) const override; |
| 186 void CountDeprecation(UseCounter::Feature) const override; | 186 void CountDeprecation(UseCounter::Feature) const override; |
| 187 bool ShouldBlockFetchByMixedContentCheck( | 187 bool ShouldBlockFetchByMixedContentCheck( |
| 188 const ResourceRequest&, | 188 const ResourceRequest&, |
| 189 const KURL&, | 189 const KURL&, |
| 190 SecurityViolationReportingPolicy) const override; | 190 SecurityViolationReportingPolicy) const override; |
| 191 | 191 |
| 192 Member<DocumentLoader> document_loader_; | 192 Member<DocumentLoader> document_loader_; |
| 193 }; | 193 }; |
| 194 | 194 |
| 195 } // namespace blink | 195 } // namespace blink |
| 196 | 196 |
| 197 #endif | 197 #endif |
| OLD | NEW |