| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2003 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 2003 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2004, 2005, 2006, 2008, 2009, 2010 Apple Inc. All rights reserv
ed. | 3 * Copyright (C) 2004, 2005, 2006, 2008, 2009, 2010 Apple Inc. All rights reserv
ed. |
| 4 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> | 4 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> |
| 5 * Copyright (C) 2009 - 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserve
d. | 5 * Copyright (C) 2009 - 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserve
d. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 #include "sky/engine/platform/graphics/Color.h" | 41 #include "sky/engine/platform/graphics/Color.h" |
| 42 #include "sky/engine/wtf/HashSet.h" | 42 #include "sky/engine/wtf/HashSet.h" |
| 43 #include "sky/engine/wtf/OwnPtr.h" | 43 #include "sky/engine/wtf/OwnPtr.h" |
| 44 #include "sky/engine/wtf/Vector.h" | 44 #include "sky/engine/wtf/Vector.h" |
| 45 #include "sky/engine/wtf/text/AtomicString.h" | 45 #include "sky/engine/wtf/text/AtomicString.h" |
| 46 #include "sky/engine/wtf/text/TextPosition.h" | 46 #include "sky/engine/wtf/text/TextPosition.h" |
| 47 | 47 |
| 48 namespace blink { | 48 namespace blink { |
| 49 | 49 |
| 50 class AnimationParseContext; | 50 class AnimationParseContext; |
| 51 class CSSBasicShape; |
| 52 class CSSBasicShapeInset; |
| 51 class CSSBorderImageSliceValue; | 53 class CSSBorderImageSliceValue; |
| 52 class CSSPrimitiveValue; | 54 class CSSPrimitiveValue; |
| 53 class CSSSelectorList; | 55 class CSSSelectorList; |
| 54 class CSSValue; | 56 class CSSValue; |
| 55 class CSSValueList; | 57 class CSSValueList; |
| 56 class CSSBasicShape; | |
| 57 class CSSBasicShapeInset; | |
| 58 class Document; | 58 class Document; |
| 59 class Element; | 59 class Element; |
| 60 class ImmutableStylePropertySet; | 60 class ImmutableStylePropertySet; |
| 61 class MediaQueryExp; | 61 class MediaQueryExp; |
| 62 class MediaQuerySet; | 62 class MediaQuerySet; |
| 63 class MutableStylePropertySet; | 63 class MutableStylePropertySet; |
| 64 class StyleColor; | 64 class StyleColor; |
| 65 class StyleKeyframe; | 65 class StyleKeyframe; |
| 66 class StylePropertyShorthand; | 66 class StylePropertyShorthand; |
| 67 class StyleRuleBase; | 67 class StyleRuleBase; |
| 68 class StyleRuleKeyframes; | 68 class StyleRuleKeyframes; |
| 69 class StyleKeyframe; | |
| 70 class StyleSheetContents; | 69 class StyleSheetContents; |
| 71 class UseCounter; | 70 class UseCounter; |
| 72 | 71 |
| 73 // FIXME: This class is shared with CSSTokenizer so should we rename it to CSSSo
urceLocation? | 72 // FIXME: This class is shared with CSSTokenizer so should we rename it to CSSSo
urceLocation? |
| 74 struct CSSParserLocation { | 73 struct CSSParserLocation { |
| 75 unsigned offset; | 74 unsigned offset; |
| 76 unsigned lineNumber; | 75 unsigned lineNumber; |
| 77 CSSParserString token; | 76 CSSParserString token; |
| 78 }; | 77 }; |
| 79 | 78 |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 inline int cssyylex(void* yylval, BisonCSSParser* parser) | 282 inline int cssyylex(void* yylval, BisonCSSParser* parser) |
| 284 { | 283 { |
| 285 return parser->m_tokenizer.lex(yylval); | 284 return parser->m_tokenizer.lex(yylval); |
| 286 } | 285 } |
| 287 | 286 |
| 288 bool isValidNthToken(const CSSParserString&); | 287 bool isValidNthToken(const CSSParserString&); |
| 289 | 288 |
| 290 } // namespace blink | 289 } // namespace blink |
| 291 | 290 |
| 292 #endif // SKY_ENGINE_CORE_CSS_PARSER_BISONCSSPARSER_H_ | 291 #endif // SKY_ENGINE_CORE_CSS_PARSER_BISONCSSPARSER_H_ |
| OLD | NEW |