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

Unified Diff: Source/core/svg/properties/SVGStaticListPropertyTearOff.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/SVGStaticListPropertyTearOff.h
diff --git a/Source/core/svg/properties/SVGStaticListPropertyTearOff.h b/Source/core/svg/properties/SVGStaticListPropertyTearOff.h
index 1488c59e66942cfe359f50bd092495a41cb388f1..819df480ac20d5b305bca2560cb00106f31d842f 100644
--- a/Source/core/svg/properties/SVGStaticListPropertyTearOff.h
+++ b/Source/core/svg/properties/SVGStaticListPropertyTearOff.h
@@ -46,39 +46,39 @@ public:
SVGElement* contextElement() const { return m_contextElement; }
// SVGList API
- void clear(ExceptionState& es)
+ void clear(ExceptionState& exceptionState)
{
- Base::clearValues(es);
+ Base::clearValues(exceptionState);
}
- ListItemType initialize(const ListItemType& newItem, ExceptionState& es)
+ ListItemType initialize(const ListItemType& newItem, ExceptionState& exceptionState)
{
- return Base::initializeValues(newItem, es);
+ return Base::initializeValues(newItem, exceptionState);
}
- ListItemType getItem(unsigned index, ExceptionState& es)
+ ListItemType getItem(unsigned index, ExceptionState& exceptionState)
{
- return Base::getItemValues(index, es);
+ return Base::getItemValues(index, exceptionState);
}
- ListItemType insertItemBefore(const ListItemType& newItem, unsigned index, ExceptionState& es)
+ ListItemType insertItemBefore(const ListItemType& newItem, unsigned index, ExceptionState& exceptionState)
{
- return Base::insertItemBeforeValues(newItem, index, es);
+ return Base::insertItemBeforeValues(newItem, index, exceptionState);
}
- ListItemType replaceItem(const ListItemType& newItem, unsigned index, ExceptionState& es)
+ ListItemType replaceItem(const ListItemType& newItem, unsigned index, ExceptionState& exceptionState)
{
- return Base::replaceItemValues(newItem, index, es);
+ return Base::replaceItemValues(newItem, index, exceptionState);
}
- ListItemType removeItem(unsigned index, ExceptionState& es)
+ ListItemType removeItem(unsigned index, ExceptionState& exceptionState)
{
- return Base::removeItemValues(index, es);
+ return Base::removeItemValues(index, exceptionState);
}
- ListItemType appendItem(const ListItemType& newItem, ExceptionState& es)
+ ListItemType appendItem(const ListItemType& newItem, ExceptionState& exceptionState)
{
- return Base::appendItemValues(newItem, es);
+ return Base::appendItemValues(newItem, exceptionState);
}
private:

Powered by Google App Engine
This is Rietveld 408576698