| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 namespace WTF { | 44 namespace WTF { |
| 45 class OrdinalNumber; | 45 class OrdinalNumber; |
| 46 } | 46 } |
| 47 | 47 |
| 48 namespace blink { | 48 namespace blink { |
| 49 | 49 |
| 50 class ContentSecurityPolicyResponseHeaders; | 50 class ContentSecurityPolicyResponseHeaders; |
| 51 class ConsoleMessage; | 51 class ConsoleMessage; |
| 52 class CSPDirectiveList; | 52 class CSPDirectiveList; |
| 53 class CSPSource; | 53 class CSPSource; |
| 54 class DOMStringList; | |
| 55 class Document; | 54 class Document; |
| 56 class JSONObject; | |
| 57 class KURL; | 55 class KURL; |
| 58 class SecurityOrigin; | 56 class SecurityOrigin; |
| 59 | 57 |
| 60 typedef int SandboxFlags; | 58 typedef int SandboxFlags; |
| 61 typedef Vector<OwnPtr<CSPDirectiveList> > CSPDirectiveListVector; | 59 typedef Vector<OwnPtr<CSPDirectiveList> > CSPDirectiveListVector; |
| 62 typedef WillBePersistentHeapVector<RefPtrWillBeMember<ConsoleMessage> > ConsoleM
essageVector; | 60 typedef WillBePersistentHeapVector<RefPtrWillBeMember<ConsoleMessage> > ConsoleM
essageVector; |
| 63 | 61 |
| 64 class ContentSecurityPolicy : public RefCounted<ContentSecurityPolicy> { | 62 class ContentSecurityPolicy : public RefCounted<ContentSecurityPolicy> { |
| 65 WTF_MAKE_FAST_ALLOCATED; | 63 WTF_MAKE_FAST_ALLOCATED; |
| 66 public: | 64 public: |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 SandboxFlags m_sandboxMask; | 222 SandboxFlags m_sandboxMask; |
| 225 ReferrerPolicy m_referrerPolicy; | 223 ReferrerPolicy m_referrerPolicy; |
| 226 String m_disableEvalErrorMessage; | 224 String m_disableEvalErrorMessage; |
| 227 | 225 |
| 228 OwnPtr<CSPSource> m_selfSource; | 226 OwnPtr<CSPSource> m_selfSource; |
| 229 }; | 227 }; |
| 230 | 228 |
| 231 } | 229 } |
| 232 | 230 |
| 233 #endif | 231 #endif |
| OLD | NEW |