| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 // but we can't destroy script in destroyDecodedData because that's our
only copy of the data! | 90 // but we can't destroy script in destroyDecodedData because that's our
only copy of the data! |
| 91 setEncodedSize(script.sizeInBytes()); | 91 setEncodedSize(script.sizeInBytes()); |
| 92 m_script = AtomicString(script); | 92 m_script = AtomicString(script); |
| 93 } | 93 } |
| 94 | 94 |
| 95 return m_script.string(); | 95 return m_script.string(); |
| 96 } | 96 } |
| 97 | 97 |
| 98 bool ScriptResource::mimeTypeAllowedByNosniff() const | 98 bool ScriptResource::mimeTypeAllowedByNosniff() const |
| 99 { | 99 { |
| 100 return parseContentTypeOptionsHeader(m_response.httpHeaderField("X-Content-T
ype-Options")) != ContentTypeOptionsNosniff || MIMETypeRegistry::isSupportedJava
ScriptMIMEType(mimeType()); | 100 // FIXMEDART: Added for Dart MIME type support. |
| 101 return parseContentTypeOptionsHeader(m_response.httpHeaderField("X-Content-T
ype-Options")) != ContentTypeOptionsNosniff |
| 102 || MIMETypeRegistry::isSupportedJavaScriptMIMEType(mimeType()) |
| 103 || MIMETypeRegistry::isSupportedDartMIMEType(mimeType()); |
| 101 } | 104 } |
| 102 | 105 |
| 103 } // namespace blink | 106 } // namespace blink |
| OLD | NEW |