OLD | NEW |
1 /* | 1 /* |
2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de) | 2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de) |
3 Copyright (C) 2001 Dirk Mueller (mueller@kde.org) | 3 Copyright (C) 2001 Dirk Mueller (mueller@kde.org) |
4 Copyright (C) 2002 Waldo Bastian (bastian@kde.org) | 4 Copyright (C) 2002 Waldo Bastian (bastian@kde.org) |
5 Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) | 5 Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) |
6 Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. | 6 Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. |
7 | 7 |
8 This library is free software; you can redistribute it and/or | 8 This library is free software; you can redistribute it and/or |
9 modify it under the terms of the GNU Library General Public | 9 modify it under the terms of the GNU Library General Public |
10 License as published by the Free Software Foundation; either | 10 License as published by the Free Software Foundation; either |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 return m_script; | 98 return m_script; |
99 } | 99 } |
100 | 100 |
101 void ScriptResource::destroyDecodedDataForFailedRevalidation() | 101 void ScriptResource::destroyDecodedDataForFailedRevalidation() |
102 { | 102 { |
103 m_script = CompressibleString(); | 103 m_script = CompressibleString(); |
104 } | 104 } |
105 | 105 |
106 bool ScriptResource::mimeTypeAllowedByNosniff() const | 106 bool ScriptResource::mimeTypeAllowedByNosniff() const |
107 { | 107 { |
108 return parseContentTypeOptionsHeader(m_response.httpHeaderField(HTTPNames::X
_Content_Type_Options)) != ContentTypeOptionsNosniff || MIMETypeRegistry::isSupp
ortedJavaScriptMIMEType(httpContentType()); | 108 return parseContentTypeOptionsHeader(response().httpHeaderField(HTTPNames::X
_Content_Type_Options)) != ContentTypeOptionsNosniff || MIMETypeRegistry::isSupp
ortedJavaScriptMIMEType(httpContentType()); |
109 } | 109 } |
110 | 110 |
111 void ScriptResource::setIntegrityDisposition(ScriptIntegrityDisposition disposit
ion) | 111 void ScriptResource::setIntegrityDisposition(ScriptIntegrityDisposition disposit
ion) |
112 { | 112 { |
113 ASSERT(disposition != ScriptIntegrityDisposition::NotChecked); | 113 ASSERT(disposition != ScriptIntegrityDisposition::NotChecked); |
114 m_integrityDisposition = disposition; | 114 m_integrityDisposition = disposition; |
115 } | 115 } |
116 bool ScriptResource::mustRefetchDueToIntegrityMetadata(const FetchRequest& reque
st) const | 116 bool ScriptResource::mustRefetchDueToIntegrityMetadata(const FetchRequest& reque
st) const |
117 { | 117 { |
118 if (request.integrityMetadata().isEmpty()) | 118 if (request.integrityMetadata().isEmpty()) |
119 return false; | 119 return false; |
120 | 120 |
121 return !IntegrityMetadata::setsEqual(m_integrityMetadata, request.integrityM
etadata()); | 121 return !IntegrityMetadata::setsEqual(m_integrityMetadata, request.integrityM
etadata()); |
122 } | 122 } |
123 | 123 |
124 } // namespace blink | 124 } // namespace blink |
OLD | NEW |