| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CSSParserContext_h | 5 #ifndef CSSParserContext_h |
| 6 #define CSSParserContext_h | 6 #define CSSParserContext_h |
| 7 | 7 |
| 8 #include "core/CoreExport.h" | 8 #include "core/CoreExport.h" |
| 9 #include "core/css/parser/CSSParserMode.h" | 9 #include "core/css/parser/CSSParserMode.h" |
| 10 #include "core/fetch/ResourceLoaderOptions.h" | 10 #include "platform/loader/fetch/ResourceLoaderOptions.h" |
| 11 #include "platform/weborigin/KURL.h" | 11 #include "platform/weborigin/KURL.h" |
| 12 #include "platform/weborigin/Referrer.h" | 12 #include "platform/weborigin/Referrer.h" |
| 13 | 13 |
| 14 namespace blink { | 14 namespace blink { |
| 15 | 15 |
| 16 class Document; | 16 class Document; |
| 17 class UseCounter; | 17 class UseCounter; |
| 18 | 18 |
| 19 class CORE_EXPORT CSSParserContext { | 19 class CORE_EXPORT CSSParserContext { |
| 20 USING_FAST_MALLOC(CSSParserContext); | 20 USING_FAST_MALLOC(CSSParserContext); |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 ContentSecurityPolicyDisposition m_shouldCheckContentSecurityPolicy; | 90 ContentSecurityPolicyDisposition m_shouldCheckContentSecurityPolicy; |
| 91 | 91 |
| 92 UseCounter* m_useCounter; | 92 UseCounter* m_useCounter; |
| 93 }; | 93 }; |
| 94 | 94 |
| 95 CORE_EXPORT const CSSParserContext& strictCSSParserContext(); | 95 CORE_EXPORT const CSSParserContext& strictCSSParserContext(); |
| 96 | 96 |
| 97 } // namespace blink | 97 } // namespace blink |
| 98 | 98 |
| 99 #endif // CSSParserMode_h | 99 #endif // CSSParserMode_h |
| OLD | NEW |