| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 CSSSelectorList; | 50 class CSSSelectorList; |
| 51 class CSSValue; | 51 class CSSValue; |
| 52 class CSSValueList; | |
| 53 class Document; | |
| 54 class Element; | 52 class Element; |
| 55 class ImmutableStylePropertySet; | 53 class ImmutableStylePropertySet; |
| 56 class MediaQueryExp; | 54 class MediaQueryExp; |
| 57 class MediaQuerySet; | 55 class MediaQuerySet; |
| 58 class MutableStylePropertySet; | 56 class MutableStylePropertySet; |
| 59 class StyleColor; | 57 class StyleColor; |
| 60 class StyleKeyframe; | 58 class StyleKeyframe; |
| 61 class StyleRuleBase; | 59 class StyleRuleBase; |
| 62 class StyleRuleKeyframes; | 60 class StyleRuleKeyframes; |
| 63 class StyleKeyframe; | 61 class StyleKeyframe; |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 inline int cssyylex(void* yylval, BisonCSSParser* parser) | 308 inline int cssyylex(void* yylval, BisonCSSParser* parser) |
| 311 { | 309 { |
| 312 return parser->m_tokenizer.lex(yylval); | 310 return parser->m_tokenizer.lex(yylval); |
| 313 } | 311 } |
| 314 | 312 |
| 315 bool isValidNthToken(const CSSParserString&); | 313 bool isValidNthToken(const CSSParserString&); |
| 316 | 314 |
| 317 } // namespace blink | 315 } // namespace blink |
| 318 | 316 |
| 319 #endif // BisonCSSParser_h | 317 #endif // BisonCSSParser_h |
| OLD | NEW |