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

Unified Diff: third_party/WebKit/Source/core/xml/XSLTProcessorLibxslt.cpp

Issue 2389883005: reflow comments in core/xml* (Closed)
Patch Set: 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/xml/XSLTProcessorLibxslt.cpp
diff --git a/third_party/WebKit/Source/core/xml/XSLTProcessorLibxslt.cpp b/third_party/WebKit/Source/core/xml/XSLTProcessorLibxslt.cpp
index 1635f15cd7a344afe42dc7754ce3056610e56201..f63848328fc90b3c128ed1567cb71099f5b94d3c 100644
--- a/third_party/WebKit/Source/core/xml/XSLTProcessorLibxslt.cpp
+++ b/third_party/WebKit/Source/core/xml/XSLTProcessorLibxslt.cpp
@@ -84,7 +84,8 @@ void XSLTProcessor::parseErrorFunc(void* userData, xmlError* error) {
SourceLocation::create(error->file, error->line, 0, nullptr)));
}
-// FIXME: There seems to be no way to control the ctxt pointer for loading here, thus we have globals.
+// FIXME: There seems to be no way to control the ctxt pointer for loading here,
+// thus we have globals.
static XSLTProcessor* globalProcessor = nullptr;
static ResourceFetcher* globalResourceFetcher = nullptr;
@@ -249,7 +250,8 @@ static xsltStylesheetPtr xsltStylesheetPointer(
Member<XSLStyleSheet>& cachedStylesheet,
Node* stylesheetRootNode) {
if (!cachedStylesheet && stylesheetRootNode) {
- // When using importStylesheet, we will use the given document as the imported stylesheet's owner.
+ // When using importStylesheet, we will use the given document as the
+ // imported stylesheet's owner.
cachedStylesheet = XSLStyleSheet::createForXSLTProcessor(
stylesheetRootNode->parentNode()
? &stylesheetRootNode->parentNode()->document()

Powered by Google App Engine
This is Rietveld 408576698