Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(55)

Side by Side Diff: third_party/WebKit/Source/core/loader/resource/ScriptResource.cpp

Issue 2689173002: Implement script MIME restrictions for X-Content-Type-Options: nosniff for Workers (Closed)
Patch Set: incorporated mkwst@'s comment Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 m_script = AtomicString(script); 93 m_script = AtomicString(script);
94 } 94 }
95 95
96 return m_script; 96 return m_script;
97 } 97 }
98 98
99 void ScriptResource::destroyDecodedDataForFailedRevalidation() { 99 void ScriptResource::destroyDecodedDataForFailedRevalidation() {
100 m_script = AtomicString(); 100 m_script = AtomicString();
101 } 101 }
102 102
103 bool ScriptResource::mimeTypeAllowedByNosniff() const { 103 // static
104 return parseContentTypeOptionsHeader(response().httpHeaderField( 104 bool ScriptResource::mimeTypeAllowedByNosniff(
105 const ResourceResponse& response) {
106 return parseContentTypeOptionsHeader(response.httpHeaderField(
105 HTTPNames::X_Content_Type_Options)) != ContentTypeOptionsNosniff || 107 HTTPNames::X_Content_Type_Options)) != ContentTypeOptionsNosniff ||
106 MIMETypeRegistry::isSupportedJavaScriptMIMEType(httpContentType()); 108 MIMETypeRegistry::isSupportedJavaScriptMIMEType(
109 response.httpContentType());
107 } 110 }
108 111
109 } // namespace blink 112 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698