Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(655)

Side by Side Diff: sky/engine/core/css/parser/CSSPropertyParser.h

Issue 867903002: Remove UseCounter (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
41 namespace blink { 41 namespace blink {
42 42
43 class CSSBorderImageSliceValue; 43 class CSSBorderImageSliceValue;
44 class CSSPrimitiveValue; 44 class CSSPrimitiveValue;
45 class CSSValue; 45 class CSSValue;
46 class CSSValueList; 46 class CSSValueList;
47 class CSSBasicShape; 47 class CSSBasicShape;
48 class CSSBasicShapeInset; 48 class CSSBasicShapeInset;
49 class ImmutableStylePropertySet; 49 class ImmutableStylePropertySet;
50 class StylePropertyShorthand; 50 class StylePropertyShorthand;
51 class UseCounter;
52 51
53 // Inputs: PropertyID, CSSParserValueList. 52 // Inputs: PropertyID, CSSParserValueList.
54 // Outputs: Vector of CSSProperties 53 // Outputs: Vector of CSSProperties
55 54
56 class CSSPropertyParser { 55 class CSSPropertyParser {
57 STACK_ALLOCATED(); 56 STACK_ALLOCATED();
58 public: 57 public:
59 static bool parseValue(CSSPropertyID, 58 static bool parseValue(CSSPropertyID,
60 CSSParserValueList*, const CSSParserContext&, bool inViewport, 59 CSSParserValueList*, const CSSParserContext&, bool inViewport,
61 Vector<CSSProperty, 256>&, CSSRuleSourceData::Type); 60 Vector<CSSProperty, 256>&, CSSRuleSourceData::Type);
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 CSSPropertyID cssPropertyID(const CSSParserString&); 343 CSSPropertyID cssPropertyID(const CSSParserString&);
345 CSSPropertyID cssPropertyID(const String&); 344 CSSPropertyID cssPropertyID(const String&);
346 CSSValueID cssValueKeywordID(const CSSParserString&); 345 CSSValueID cssValueKeywordID(const CSSParserString&);
347 346
348 bool isKeywordPropertyID(CSSPropertyID); 347 bool isKeywordPropertyID(CSSPropertyID);
349 bool isValidKeywordPropertyAndValue(CSSPropertyID, CSSValueID, const CSSParserCo ntext&); 348 bool isValidKeywordPropertyAndValue(CSSPropertyID, CSSValueID, const CSSParserCo ntext&);
350 349
351 } // namespace blink 350 } // namespace blink
352 351
353 #endif // SKY_ENGINE_CORE_CSS_PARSER_CSSPROPERTYPARSER_H_ 352 #endif // SKY_ENGINE_CORE_CSS_PARSER_CSSPROPERTYPARSER_H_
OLDNEW
« no previous file with comments | « sky/engine/core/css/parser/CSSParserMode.cpp ('k') | sky/engine/core/css/parser/CSSPropertyParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698