Index: third_party/WebKit/Source/web/WebDocument.cpp |
diff --git a/third_party/WebKit/Source/web/WebDocument.cpp b/third_party/WebKit/Source/web/WebDocument.cpp |
index cd67191bd9dfd830dfd5e58e3182863e64b8a702..da41a82e08a61eacfd5747af4657fa7f3a8c914e 100644 |
--- a/third_party/WebKit/Source/web/WebDocument.cpp |
+++ b/third_party/WebKit/Source/web/WebDocument.cpp |
@@ -213,7 +213,7 @@ void WebDocument::insertStyleSheet(const WebString& sourceCode) |
{ |
Document* document = unwrap<Document>(); |
DCHECK(document); |
- StyleSheetContents* parsedSheet = StyleSheetContents::create(CSSParserContext(*document, 0)); |
+ StyleSheetContents* parsedSheet = StyleSheetContents::create(CSSParserContext(*document, nullptr)); |
parsedSheet->parseString(sourceCode); |
document->styleEngine().injectAuthorSheet(parsedSheet); |
} |