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

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

Issue 2068053002: Rename Blink constants generated from IDL files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 4 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/DocumentXSLT.cpp
diff --git a/third_party/WebKit/Source/core/xml/DocumentXSLT.cpp b/third_party/WebKit/Source/core/xml/DocumentXSLT.cpp
index b06190bcc4c2952f51b9d2f39e7f1367f914a087..0d1d1facb6c0c854465c0c376e2f43acd9554afe 100644
--- a/third_party/WebKit/Source/core/xml/DocumentXSLT.cpp
+++ b/third_party/WebKit/Source/core/xml/DocumentXSLT.cpp
@@ -120,7 +120,7 @@ void DocumentXSLT::applyXSLTransform(Document& document, ProcessingInstruction*
ProcessingInstruction* DocumentXSLT::findXSLStyleSheet(Document& document)
{
for (Node* node = document.firstChild(); node; node = node->nextSibling()) {
- if (node->getNodeType() != Node::PROCESSING_INSTRUCTION_NODE)
+ if (node->getNodeType() != Node::kProcessingInstructionNode)
continue;
ProcessingInstruction* pi = toProcessingInstruction(node);

Powered by Google App Engine
This is Rietveld 408576698