| 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 CSSStyleSheet; | 16 class CSSStyleSheet; |
| 17 class Document; | 17 class Document; |
| 18 class StyleSheetContents; | 18 class StyleSheetContents; |
| 19 class UseCounter; | 19 class UseCounter; |
| 20 | 20 |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 ContentSecurityPolicyDisposition m_shouldCheckContentSecurityPolicy; | 114 ContentSecurityPolicyDisposition m_shouldCheckContentSecurityPolicy; |
| 115 | 115 |
| 116 UseCounter* m_useCounter; | 116 UseCounter* m_useCounter; |
| 117 }; | 117 }; |
| 118 | 118 |
| 119 CORE_EXPORT const CSSParserContext* strictCSSParserContext(); | 119 CORE_EXPORT const CSSParserContext* strictCSSParserContext(); |
| 120 | 120 |
| 121 } // namespace blink | 121 } // namespace blink |
| 122 | 122 |
| 123 #endif // CSSParserContext_h | 123 #endif // CSSParserContext_h |
| OLD | NEW |