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

Unified Diff: third_party/WebKit/Source/core/css/parser/CSSParser.h

Issue 2315923002: Lazy Parse CSS (Closed)
Patch Set: s/->/. Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/css/parser/CSSParser.h
diff --git a/third_party/WebKit/Source/core/css/parser/CSSParser.h b/third_party/WebKit/Source/core/css/parser/CSSParser.h
index e15b17a482abaa4c6c969540c070b723bfbdbb84..7a71c8c7fa7725b11af409874e39c97df59c3666 100644
--- a/third_party/WebKit/Source/core/css/parser/CSSParser.h
+++ b/third_party/WebKit/Source/core/css/parser/CSSParser.h
@@ -31,7 +31,7 @@ class CORE_EXPORT CSSParser {
public:
// As well as regular rules, allows @import and @namespace but not @charset
static StyleRuleBase* parseRule(const CSSParserContext&, StyleSheetContents*, const String&);
- static void parseSheet(const CSSParserContext&, StyleSheetContents*, const String&);
+ static void parseSheet(const CSSParserContext&, StyleSheetContents*, const String&, bool deferPropertyParsing = false);
static CSSSelectorList parseSelector(const CSSParserContext&, StyleSheetContents*, const String&);
static CSSSelectorList parsePageSelector(const CSSParserContext&, StyleSheetContents*, const String&);
static bool parseDeclarationList(const CSSParserContext&, MutableStylePropertySet*, const String&);

Powered by Google App Engine
This is Rietveld 408576698