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

Unified Diff: Source/core/editing/WrapContentsInDummySpanCommand.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
« no previous file with comments | « Source/core/editing/VisibleUnits.cpp ('k') | Source/core/editing/htmlediting.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/editing/WrapContentsInDummySpanCommand.cpp
diff --git a/Source/core/editing/WrapContentsInDummySpanCommand.cpp b/Source/core/editing/WrapContentsInDummySpanCommand.cpp
index 9808d4239c7f7666603666f6a98ee6112753919f..67b029f8be644ace969499591e17909e753d2744 100644
--- a/Source/core/editing/WrapContentsInDummySpanCommand.cpp
+++ b/Source/core/editing/WrapContentsInDummySpanCommand.cpp
@@ -47,9 +47,9 @@ void WrapContentsInDummySpanCommand::executeApply()
size_t size = children.size();
for (size_t i = 0; i < size; ++i)
- m_dummySpan->appendChild(children[i].release(), IGNORE_EXCEPTION_STATE);
+ m_dummySpan->appendChild(children[i].release(), IGNORE_EXCEPTION);
- m_element->appendChild(m_dummySpan.get(), IGNORE_EXCEPTION_STATE);
+ m_element->appendChild(m_dummySpan.get(), IGNORE_EXCEPTION);
}
void WrapContentsInDummySpanCommand::doApply()
@@ -72,9 +72,9 @@ void WrapContentsInDummySpanCommand::doUnapply()
size_t size = children.size();
for (size_t i = 0; i < size; ++i)
- m_element->appendChild(children[i].release(), IGNORE_EXCEPTION_STATE);
+ m_element->appendChild(children[i].release(), IGNORE_EXCEPTION);
- m_dummySpan->remove(IGNORE_EXCEPTION_STATE);
+ m_dummySpan->remove(IGNORE_EXCEPTION);
}
void WrapContentsInDummySpanCommand::doReapply()
« no previous file with comments | « Source/core/editing/VisibleUnits.cpp ('k') | Source/core/editing/htmlediting.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698