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

Unified Diff: Source/core/svg/properties/SVGPathSegListPropertyTearOff.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/SVGPathSegListPropertyTearOff.h
diff --git a/Source/core/svg/properties/SVGPathSegListPropertyTearOff.h b/Source/core/svg/properties/SVGPathSegListPropertyTearOff.h
index b1a874a572b47d10db3c1840f798aaed37579db5..5b7ab90f1ba0b4ff8161b4cc3749c157ebd61deb 100644
--- a/Source/core/svg/properties/SVGPathSegListPropertyTearOff.h
+++ b/Source/core/svg/properties/SVGPathSegListPropertyTearOff.h
@@ -71,47 +71,47 @@ public:
// SVGList API
void clear(ExceptionState&);
- PassListItemType initialize(PassListItemType passNewItem, ExceptionState& es)
+ PassListItemType initialize(PassListItemType passNewItem, ExceptionState& exceptionState)
{
// Not specified, but FF/Opera do it this way, and it's just sane.
if (!passNewItem) {
- es.throwUninformativeAndGenericTypeError();
+ exceptionState.throwUninformativeAndGenericTypeError();
return 0;
}
clearContextAndRoles();
ListItemType newItem = passNewItem;
- return Base::initializeValues(newItem, es);
+ return Base::initializeValues(newItem, exceptionState);
}
PassListItemType getItem(unsigned index, ExceptionState&);
- PassListItemType insertItemBefore(PassListItemType passNewItem, unsigned index, ExceptionState& es)
+ PassListItemType insertItemBefore(PassListItemType passNewItem, unsigned index, ExceptionState& exceptionState)
{
// Not specified, but FF/Opera do it this way, and it's just sane.
if (!passNewItem) {
- es.throwUninformativeAndGenericTypeError();
+ exceptionState.throwUninformativeAndGenericTypeError();
return 0;
}
ListItemType newItem = passNewItem;
- return Base::insertItemBeforeValues(newItem, index, es);
+ return Base::insertItemBeforeValues(newItem, index, exceptionState);
}
PassListItemType replaceItem(PassListItemType, unsigned index, ExceptionState&);
PassListItemType removeItem(unsigned index, ExceptionState&);
- PassListItemType appendItem(PassListItemType passNewItem, ExceptionState& es)
+ PassListItemType appendItem(PassListItemType passNewItem, ExceptionState& exceptionState)
{
// Not specified, but FF/Opera do it this way, and it's just sane.
if (!passNewItem) {
- es.throwUninformativeAndGenericTypeError();
+ exceptionState.throwUninformativeAndGenericTypeError();
return 0;
}
ListItemType newItem = passNewItem;
- return Base::appendItemValues(newItem, es);
+ return Base::appendItemValues(newItem, exceptionState);
}
private:
« no previous file with comments | « Source/core/svg/properties/SVGListPropertyTearOff.h ('k') | Source/core/svg/properties/SVGPathSegListPropertyTearOff.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698