| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved. | 2 * Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved. |
| 3 * Copyright (C) 2012 Apple Inc. All rights reserved. | 3 * Copyright (C) 2012 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above | 9 * 1. Redistributions of source code must retain the above |
| 10 * copyright notice, this list of conditions and the following | 10 * copyright notice, this list of conditions and the following |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, | 21 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, |
| 22 * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | 22 * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 23 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | 23 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 24 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 24 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR | 25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR |
| 26 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF | 26 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF |
| 27 * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 27 * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 28 * SUCH DAMAGE. | 28 * SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef CSSParserMode_h | 31 #ifndef SKY_ENGINE_CORE_CSS_PARSER_CSSPARSERMODE_H_ |
| 32 #define CSSParserMode_h | 32 #define SKY_ENGINE_CORE_CSS_PARSER_CSSPARSERMODE_H_ |
| 33 | 33 |
| 34 #include "sky/engine/platform/weborigin/KURL.h" | 34 #include "sky/engine/platform/weborigin/KURL.h" |
| 35 #include "sky/engine/platform/weborigin/Referrer.h" | 35 #include "sky/engine/platform/weborigin/Referrer.h" |
| 36 | 36 |
| 37 namespace blink { | 37 namespace blink { |
| 38 | 38 |
| 39 class Document; | 39 class Document; |
| 40 | 40 |
| 41 enum CSSParserMode { | 41 enum CSSParserMode { |
| 42 HTMLStandardMode, | 42 HTMLStandardMode, |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 KURL m_baseURL; | 103 KURL m_baseURL; |
| 104 Referrer m_referrer; | 104 Referrer m_referrer; |
| 105 | 105 |
| 106 UseCounter* m_useCounter; | 106 UseCounter* m_useCounter; |
| 107 }; | 107 }; |
| 108 | 108 |
| 109 const CSSParserContext& strictCSSParserContext(); | 109 const CSSParserContext& strictCSSParserContext(); |
| 110 | 110 |
| 111 }; | 111 }; |
| 112 | 112 |
| 113 #endif // CSSParserMode_h | 113 #endif // SKY_ENGINE_CORE_CSS_PARSER_CSSPARSERMODE_H_ |
| OLD | NEW |