| 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 20 matching lines...) Expand all Loading... |
| 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" | 34 #include "core/frame/ConsoleTypes.h" |
| 35 #include "platform/heap/Handle.h" | 35 #include "platform/heap/Handle.h" |
| 36 #include "platform/network/ContentSecurityPolicyParsers.h" | 36 #include "platform/network/ContentSecurityPolicyParsers.h" |
| 37 #include "platform/network/HTTPParsers.h" | 37 #include "platform/network/HTTPParsers.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/PassRefPtr.h" | |
| 42 #include "wtf/RefCounted.h" | |
| 43 #include "wtf/Vector.h" | 41 #include "wtf/Vector.h" |
| 44 #include "wtf/text/StringHash.h" | 42 #include "wtf/text/StringHash.h" |
| 45 #include "wtf/text/TextPosition.h" | 43 #include "wtf/text/TextPosition.h" |
| 46 #include "wtf/text/WTFString.h" | 44 #include "wtf/text/WTFString.h" |
| 47 #include <utility> | 45 #include <utility> |
| 48 | 46 |
| 49 namespace WTF { | 47 namespace WTF { |
| 50 class OrdinalNumber; | 48 class OrdinalNumber; |
| 51 } | 49 } |
| 52 | 50 |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 String m_disableEvalErrorMessage; | 296 String m_disableEvalErrorMessage; |
| 299 SecurityContext::InsecureRequestsPolicy m_insecureRequestsPolicy; | 297 SecurityContext::InsecureRequestsPolicy m_insecureRequestsPolicy; |
| 300 | 298 |
| 301 Member<CSPSource> m_selfSource; | 299 Member<CSPSource> m_selfSource; |
| 302 String m_selfProtocol; | 300 String m_selfProtocol; |
| 303 }; | 301 }; |
| 304 | 302 |
| 305 } // namespace blink | 303 } // namespace blink |
| 306 | 304 |
| 307 #endif | 305 #endif |
| OLD | NEW |