Index: third_party/WebKit/Source/core/xml/XSLStyleSheetLibxslt.cpp |
diff --git a/third_party/WebKit/Source/core/xml/XSLStyleSheetLibxslt.cpp b/third_party/WebKit/Source/core/xml/XSLStyleSheetLibxslt.cpp |
index ad43427ea134407db87281c0ecd89fd31ce5d53e..8cf31b2d9b772b8628e6ae4f5cb3d7feb06f90b2 100644 |
--- a/third_party/WebKit/Source/core/xml/XSLStyleSheetLibxslt.cpp |
+++ b/third_party/WebKit/Source/core/xml/XSLStyleSheetLibxslt.cpp |
@@ -43,10 +43,9 @@ XSLStyleSheet::XSLStyleSheet(XSLImportRule* parentRule, |
m_originalURL(originalURL), |
m_finalURL(finalURL), |
m_isDisabled(false), |
- m_embedded(false) |
+ m_embedded(false), |
// Child sheets get marked as processed when the libxslt engine has finally |
// seen them. |
- , |
m_processed(false), |
m_stylesheetDoc(0), |
m_stylesheetDocTaken(false), |
@@ -63,8 +62,7 @@ XSLStyleSheet::XSLStyleSheet(Node* parentNode, |
m_finalURL(finalURL), |
m_isDisabled(false), |
m_embedded(embedded), |
- m_processed(true) // The root sheet starts off processed. |
- , |
+ m_processed(true), // The root sheet starts off processed. |
m_stylesheetDoc(0), |
m_stylesheetDocTaken(false), |
m_compilationFailed(false), |
@@ -81,8 +79,7 @@ XSLStyleSheet::XSLStyleSheet(Document* ownerDocument, |
m_finalURL(finalURL), |
m_isDisabled(false), |
m_embedded(embedded), |
- m_processed(true) // The root sheet starts off processed. |
- , |
+ m_processed(true), // The root sheet starts off processed. |
m_stylesheetDoc(0), |
m_stylesheetDocTaken(false), |
m_compilationFailed(false), |