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

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

Issue 2289333003: CSS Lazy Parsing perf jobs (Closed)
Patch Set: CL for src perf tryjob to run blink_style.top_25 benchmark on all-android platform(s) Created 4 years, 2 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.cpp
diff --git a/third_party/WebKit/Source/core/css/parser/CSSParser.cpp b/third_party/WebKit/Source/core/css/parser/CSSParser.cpp
index ef8967ee2c664b234e72ad58d3dfe819581eba36..f211bdd9ba5a88d3f0c05b93c3182fe465d78174 100644
--- a/third_party/WebKit/Source/core/css/parser/CSSParser.cpp
+++ b/third_party/WebKit/Source/core/css/parser/CSSParser.cpp
@@ -62,8 +62,10 @@ StyleRuleBase* CSSParser::parseRule(const CSSParserContext& context,
void CSSParser::parseSheet(const CSSParserContext& context,
StyleSheetContents* styleSheet,
- const String& text) {
- return CSSParserImpl::parseStyleSheet(text, context, styleSheet);
+ const String& text,
+ bool deferPropertyParsing) {
+ return CSSParserImpl::parseStyleSheet(text, context, styleSheet,
+ deferPropertyParsing);
}
void CSSParser::parseSheetForInspector(const CSSParserContext& context,
« no previous file with comments | « third_party/WebKit/Source/core/css/parser/CSSParser.h ('k') | third_party/WebKit/Source/core/css/parser/CSSParserImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698