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 19 matching lines...) Expand all Loading... |
30 | 30 |
31 namespace blink { | 31 namespace blink { |
32 | 32 |
33 class BorderImageParseContext; | 33 class BorderImageParseContext; |
34 class CSSBorderImageSliceValue; | 34 class CSSBorderImageSliceValue; |
35 class CSSBasicShape; | 35 class CSSBasicShape; |
36 class CSSBasicShapeInset; | 36 class CSSBasicShapeInset; |
37 class CSSFunctionValue; | 37 class CSSFunctionValue; |
38 class CSSGradientValue; | 38 class CSSGradientValue; |
39 class CSSGridLineNamesValue; | 39 class CSSGridLineNamesValue; |
40 class CSSLineBoxContainValue; | |
41 struct CSSParserString; | 40 struct CSSParserString; |
42 struct CSSParserValue; | 41 struct CSSParserValue; |
43 class CSSParserValueList; | 42 class CSSParserValueList; |
44 class CSSPrimitiveValue; | 43 class CSSPrimitiveValue; |
45 class CSSProperty; | 44 class CSSProperty; |
46 class CSSQuadValue; | 45 class CSSQuadValue; |
47 class CSSValue; | 46 class CSSValue; |
48 class CSSValueList; | 47 class CSSValueList; |
49 class StylePropertyShorthand; | 48 class StylePropertyShorthand; |
50 | 49 |
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 PassRefPtrWillBeRawPtr<CSSValue> parseMotionRotation(); | 251 PassRefPtrWillBeRawPtr<CSSValue> parseMotionRotation(); |
253 | 252 |
254 PassRefPtrWillBeRawPtr<CSSValue> parseTextEmphasisStyle(); | 253 PassRefPtrWillBeRawPtr<CSSValue> parseTextEmphasisStyle(); |
255 | 254 |
256 PassRefPtrWillBeRawPtr<CSSValue> parseTouchAction(); | 255 PassRefPtrWillBeRawPtr<CSSValue> parseTouchAction(); |
257 | 256 |
258 PassRefPtrWillBeRawPtr<CSSValue> parseTextDecoration(); | 257 PassRefPtrWillBeRawPtr<CSSValue> parseTextDecoration(); |
259 | 258 |
260 PassRefPtrWillBeRawPtr<CSSValue> parseTextIndent(); | 259 PassRefPtrWillBeRawPtr<CSSValue> parseTextIndent(); |
261 | 260 |
262 PassRefPtrWillBeRawPtr<CSSLineBoxContainValue> parseLineBoxContain(); | |
263 bool parseCalculation(CSSParserValue*, ValueRange); | 261 bool parseCalculation(CSSParserValue*, ValueRange); |
264 | 262 |
265 bool parseFontFeatureTag(CSSValueList*); | 263 bool parseFontFeatureTag(CSSValueList*); |
266 PassRefPtrWillBeRawPtr<CSSValue> parseFontFeatureSettings(); | 264 PassRefPtrWillBeRawPtr<CSSValue> parseFontFeatureSettings(); |
267 | 265 |
268 bool parseFontVariantLigatures(bool important); | 266 bool parseFontVariantLigatures(bool important); |
269 | 267 |
270 bool parseGeneratedImage(CSSParserValueList*, RefPtrWillBeRawPtr<CSSValue>&)
; | 268 bool parseGeneratedImage(CSSParserValueList*, RefPtrWillBeRawPtr<CSSValue>&)
; |
271 | 269 |
272 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> createPrimitiveNumericValue(CSSPar
serValue*); | 270 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> createPrimitiveNumericValue(CSSPar
serValue*); |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
378 bool m_implicitShorthand; | 376 bool m_implicitShorthand; |
379 RefPtrWillBeMember<CSSCalcValue> m_parsedCalculation; | 377 RefPtrWillBeMember<CSSCalcValue> m_parsedCalculation; |
380 }; | 378 }; |
381 | 379 |
382 CSSPropertyID unresolvedCSSPropertyID(const CSSParserString&); | 380 CSSPropertyID unresolvedCSSPropertyID(const CSSParserString&); |
383 CSSValueID cssValueKeywordID(const CSSParserString&); | 381 CSSValueID cssValueKeywordID(const CSSParserString&); |
384 | 382 |
385 } // namespace blink | 383 } // namespace blink |
386 | 384 |
387 #endif // CSSPropertyParser_h | 385 #endif // CSSPropertyParser_h |
OLD | NEW |