| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google, Inc. All rights reserved. | 2 * Copyright (C) 2011 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #ifndef ContentSecurityPolicy_h | 26 #ifndef ContentSecurityPolicy_h |
| 27 #define ContentSecurityPolicy_h | 27 #define ContentSecurityPolicy_h |
| 28 | 28 |
| 29 #include "bindings/core/v8/ScriptState.h" | 29 #include "bindings/core/v8/ScriptState.h" |
| 30 #include "core/CoreExport.h" | 30 #include "core/CoreExport.h" |
| 31 #include "core/dom/ExecutionContext.h" | 31 #include "core/dom/ExecutionContext.h" |
| 32 #include "core/dom/SecurityContext.h" | 32 #include "core/dom/SecurityContext.h" |
| 33 #include "core/fetch/Resource.h" | 33 #include "core/fetch/Resource.h" |
| 34 #include "core/frame/ConsoleTypes.h" | |
| 35 #include "platform/heap/Handle.h" | 34 #include "platform/heap/Handle.h" |
| 36 #include "platform/network/ContentSecurityPolicyParsers.h" | 35 #include "platform/network/ContentSecurityPolicyParsers.h" |
| 37 #include "platform/network/HTTPParsers.h" | 36 #include "platform/network/HTTPParsers.h" |
| 37 #include "platform/v8_inspector/public/ConsoleTypes.h" |
| 38 #include "platform/weborigin/ReferrerPolicy.h" | 38 #include "platform/weborigin/ReferrerPolicy.h" |
| 39 #include "wtf/HashSet.h" | 39 #include "wtf/HashSet.h" |
| 40 #include "wtf/PassOwnPtr.h" | 40 #include "wtf/PassOwnPtr.h" |
| 41 #include "wtf/Vector.h" | 41 #include "wtf/Vector.h" |
| 42 #include "wtf/text/StringHash.h" | 42 #include "wtf/text/StringHash.h" |
| 43 #include "wtf/text/TextPosition.h" | 43 #include "wtf/text/TextPosition.h" |
| 44 #include "wtf/text/WTFString.h" | 44 #include "wtf/text/WTFString.h" |
| 45 #include <utility> | 45 #include <utility> |
| 46 | 46 |
| 47 namespace WTF { | 47 namespace WTF { |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 String m_disableEvalErrorMessage; | 296 String m_disableEvalErrorMessage; |
| 297 SecurityContext::InsecureRequestsPolicy m_insecureRequestsPolicy; | 297 SecurityContext::InsecureRequestsPolicy m_insecureRequestsPolicy; |
| 298 | 298 |
| 299 Member<CSPSource> m_selfSource; | 299 Member<CSPSource> m_selfSource; |
| 300 String m_selfProtocol; | 300 String m_selfProtocol; |
| 301 }; | 301 }; |
| 302 | 302 |
| 303 } // namespace blink | 303 } // namespace blink |
| 304 | 304 |
| 305 #endif | 305 #endif |
| OLD | NEW |