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

Unified Diff: Source/core/html/HTMLSelectElement.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/html/HTMLScriptElement.cpp ('k') | Source/core/html/HTMLSummaryElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLSelectElement.cpp
diff --git a/Source/core/html/HTMLSelectElement.cpp b/Source/core/html/HTMLSelectElement.cpp
index 4693888f8187ccd6d20f5a325107d1f8a5155002..2920095aef8f66a2598a2eb1a96e7623dc52bca9 100644
--- a/Source/core/html/HTMLSelectElement.cpp
+++ b/Source/core/html/HTMLSelectElement.cpp
@@ -229,7 +229,7 @@ void HTMLSelectElement::remove(int optionIndex)
if (listIndex < 0)
return;
- listItems()[listIndex]->remove(IGNORE_EXCEPTION_STATE);
+ listItems()[listIndex]->remove(IGNORE_EXCEPTION);
}
void HTMLSelectElement::remove(HTMLOptionElement* option)
@@ -237,7 +237,7 @@ void HTMLSelectElement::remove(HTMLOptionElement* option)
if (option->ownerSelectElement() != this)
return;
- option->remove(IGNORE_EXCEPTION_STATE);
+ option->remove(IGNORE_EXCEPTION);
}
String HTMLSelectElement::value() const
« no previous file with comments | « Source/core/html/HTMLScriptElement.cpp ('k') | Source/core/html/HTMLSummaryElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698