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

Side by Side Diff: Source/core/css/parser/BisonCSSParser.h

Issue 167603002: Implement 'will-change' parsing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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 | Annotate | Revision Log
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 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 bool parseLineBoxContain(bool important); 275 bool parseLineBoxContain(bool important);
276 bool parseCalculation(CSSParserValue*, ValueRange); 276 bool parseCalculation(CSSParserValue*, ValueRange);
277 277
278 bool parseFontFeatureTag(CSSValueList*); 278 bool parseFontFeatureTag(CSSValueList*);
279 bool parseFontFeatureSettings(bool important); 279 bool parseFontFeatureSettings(bool important);
280 280
281 bool parseFontVariantLigatures(bool important); 281 bool parseFontVariantLigatures(bool important);
282 282
283 bool parseGeneratedImage(CSSParserValueList*, RefPtr<CSSValue>&); 283 bool parseGeneratedImage(CSSParserValueList*, RefPtr<CSSValue>&);
284 284
285 bool parseWillChange(bool important);
286
285 CSSParserSelector* createFloatingSelector(); 287 CSSParserSelector* createFloatingSelector();
286 CSSParserSelector* createFloatingSelectorWithTagName(const QualifiedName&); 288 CSSParserSelector* createFloatingSelectorWithTagName(const QualifiedName&);
287 PassOwnPtr<CSSParserSelector> sinkFloatingSelector(CSSParserSelector*); 289 PassOwnPtr<CSSParserSelector> sinkFloatingSelector(CSSParserSelector*);
288 290
289 Vector<OwnPtr<CSSParserSelector> >* createFloatingSelectorVector(); 291 Vector<OwnPtr<CSSParserSelector> >* createFloatingSelectorVector();
290 PassOwnPtr<Vector<OwnPtr<CSSParserSelector> > > sinkFloatingSelectorVector(V ector<OwnPtr<CSSParserSelector> >*); 292 PassOwnPtr<Vector<OwnPtr<CSSParserSelector> > > sinkFloatingSelectorVector(V ector<OwnPtr<CSSParserSelector> >*);
291 293
292 CSSParserValueList* createFloatingValueList(); 294 CSSParserValueList* createFloatingValueList();
293 PassOwnPtr<CSSParserValueList> sinkFloatingValueList(CSSParserValueList*); 295 PassOwnPtr<CSSParserValueList> sinkFloatingValueList(CSSParserValueList*);
294 296
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
617 bool isValidNthToken(const CSSParserString&); 619 bool isValidNthToken(const CSSParserString&);
618 620
619 inline int cssyylex(void* yylval, BisonCSSParser* parser) 621 inline int cssyylex(void* yylval, BisonCSSParser* parser)
620 { 622 {
621 return parser->m_tokenizer.lex(yylval); 623 return parser->m_tokenizer.lex(yylval);
622 } 624 }
623 625
624 } // namespace WebCore 626 } // namespace WebCore
625 627
626 #endif // BisonCSSParser_h 628 #endif // BisonCSSParser_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698