| 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 "platform/graphics/Color.h" | 41 #include "platform/graphics/Color.h" |
| 42 #include "wtf/HashSet.h" | 42 #include "wtf/HashSet.h" |
| 43 #include "wtf/OwnPtr.h" | 43 #include "wtf/OwnPtr.h" |
| 44 #include "wtf/Vector.h" | 44 #include "wtf/Vector.h" |
| 45 #include "wtf/text/AtomicString.h" | 45 #include "wtf/text/AtomicString.h" |
| 46 #include "wtf/text/TextPosition.h" | 46 #include "wtf/text/TextPosition.h" |
| 47 | 47 |
| 48 namespace blink { | 48 namespace blink { |
| 49 | 49 |
| 50 class AnimationParseContext; | 50 class AnimationParseContext; |
| 51 class CSSArrayFunctionValue; | |
| 52 class CSSBorderImageSliceValue; | 51 class CSSBorderImageSliceValue; |
| 53 class CSSPrimitiveValue; | 52 class CSSPrimitiveValue; |
| 54 class CSSSelectorList; | 53 class CSSSelectorList; |
| 55 class CSSValue; | 54 class CSSValue; |
| 56 class CSSValueList; | 55 class CSSValueList; |
| 57 class CSSBasicShape; | 56 class CSSBasicShape; |
| 58 class CSSBasicShapeInset; | 57 class CSSBasicShapeInset; |
| 59 class Document; | 58 class Document; |
| 60 class Element; | 59 class Element; |
| 61 class ImmutableStylePropertySet; | 60 class ImmutableStylePropertySet; |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 inline int cssyylex(void* yylval, BisonCSSParser* parser) | 320 inline int cssyylex(void* yylval, BisonCSSParser* parser) |
| 322 { | 321 { |
| 323 return parser->m_tokenizer.lex(yylval); | 322 return parser->m_tokenizer.lex(yylval); |
| 324 } | 323 } |
| 325 | 324 |
| 326 bool isValidNthToken(const CSSParserString&); | 325 bool isValidNthToken(const CSSParserString&); |
| 327 | 326 |
| 328 } // namespace blink | 327 } // namespace blink |
| 329 | 328 |
| 330 #endif // BisonCSSParser_h | 329 #endif // BisonCSSParser_h |
| OLD | NEW |