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

Unified Diff: Source/core/editing/RemoveNodeCommand.cpp

Issue 22417002: Rename ASSERT_NO_EXCEPTION_STATE and IGNORE_EXCEPTION_STATE (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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: Source/core/editing/RemoveNodeCommand.cpp
diff --git a/Source/core/editing/RemoveNodeCommand.cpp b/Source/core/editing/RemoveNodeCommand.cpp
index 92591fc091fc6847868f01ed5262a1705f26900c..8f269ef7b2ba85d70347e67be9c47ea10e6b988d 100644
--- a/Source/core/editing/RemoveNodeCommand.cpp
+++ b/Source/core/editing/RemoveNodeCommand.cpp
@@ -52,7 +52,7 @@ void RemoveNodeCommand::doApply()
m_parent = parent;
m_refChild = m_node->nextSibling();
- m_node->remove(IGNORE_EXCEPTION_STATE);
+ m_node->remove(IGNORE_EXCEPTION);
}
void RemoveNodeCommand::doUnapply()
@@ -62,7 +62,7 @@ void RemoveNodeCommand::doUnapply()
if (!parent || !parent->rendererIsEditable())
return;
- parent->insertBefore(m_node.get(), refChild.get(), IGNORE_EXCEPTION_STATE);
+ parent->insertBefore(m_node.get(), refChild.get(), IGNORE_EXCEPTION);
}
#ifndef NDEBUG
« no previous file with comments | « Source/core/editing/RemoveCSSPropertyCommand.cpp ('k') | Source/core/editing/ReplaceNodeWithSpanCommand.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698