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

Unified Diff: Source/core/svg/properties/SVGListPropertyTearOff.h

Issue 72363002: Rename es => exceptionState in other than bindings/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Retry Created 7 years, 1 month 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/svg/properties/SVGListPropertyTearOff.h
diff --git a/Source/core/svg/properties/SVGListPropertyTearOff.h b/Source/core/svg/properties/SVGListPropertyTearOff.h
index 2320435bd35fd18be457f6f6b93c0eb0a186ba48..7f1410974fb10021b5c5f6eebe5fa0fb2c2b1f17 100644
--- a/Source/core/svg/properties/SVGListPropertyTearOff.h
+++ b/Source/core/svg/properties/SVGListPropertyTearOff.h
@@ -80,41 +80,41 @@ public:
}
// SVGList API
- void clear(ExceptionState& es)
+ void clear(ExceptionState& exceptionState)
{
- Base::clearValuesAndWrappers(es);
+ Base::clearValuesAndWrappers(exceptionState);
}
- PassListItemTearOff initialize(PassListItemTearOff passNewItem, ExceptionState& es)
+ PassListItemTearOff initialize(PassListItemTearOff passNewItem, ExceptionState& exceptionState)
{
- return Base::initializeValuesAndWrappers(passNewItem, es);
+ return Base::initializeValuesAndWrappers(passNewItem, exceptionState);
}
- PassListItemTearOff getItem(unsigned index, ExceptionState& es)
+ PassListItemTearOff getItem(unsigned index, ExceptionState& exceptionState)
{
ASSERT(m_animatedProperty);
- return Base::getItemValuesAndWrappers(m_animatedProperty, index, es);
+ return Base::getItemValuesAndWrappers(m_animatedProperty, index, exceptionState);
}
- PassListItemTearOff insertItemBefore(PassListItemTearOff passNewItem, unsigned index, ExceptionState& es)
+ PassListItemTearOff insertItemBefore(PassListItemTearOff passNewItem, unsigned index, ExceptionState& exceptionState)
{
- return Base::insertItemBeforeValuesAndWrappers(passNewItem, index, es);
+ return Base::insertItemBeforeValuesAndWrappers(passNewItem, index, exceptionState);
}
- PassListItemTearOff replaceItem(PassListItemTearOff passNewItem, unsigned index, ExceptionState& es)
+ PassListItemTearOff replaceItem(PassListItemTearOff passNewItem, unsigned index, ExceptionState& exceptionState)
{
- return Base::replaceItemValuesAndWrappers(passNewItem, index, es);
+ return Base::replaceItemValuesAndWrappers(passNewItem, index, exceptionState);
}
- PassListItemTearOff removeItem(unsigned index, ExceptionState& es)
+ PassListItemTearOff removeItem(unsigned index, ExceptionState& exceptionState)
{
ASSERT(m_animatedProperty);
- return Base::removeItemValuesAndWrappers(m_animatedProperty, index, es);
+ return Base::removeItemValuesAndWrappers(m_animatedProperty, index, exceptionState);
}
- PassListItemTearOff appendItem(PassListItemTearOff passNewItem, ExceptionState& es)
+ PassListItemTearOff appendItem(PassListItemTearOff passNewItem, ExceptionState& exceptionState)
{
- return Base::appendItemValuesAndWrappers(passNewItem, es);
+ return Base::appendItemValuesAndWrappers(passNewItem, exceptionState);
}
SVGElement* contextElement() const
« no previous file with comments | « Source/core/svg/properties/SVGListProperty.h ('k') | Source/core/svg/properties/SVGPathSegListPropertyTearOff.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698