| Index: Source/core/css/CSSVariablesMap.cpp
|
| diff --git a/Source/core/css/CSSVariablesMap.cpp b/Source/core/css/CSSVariablesMap.cpp
|
| index 48e67ebca7ec01f03a423b9f3dfdc3b5ce234ef0..c62bc21e3b488121c3ee1284d2c4108107244aa3 100644
|
| --- a/Source/core/css/CSSVariablesMap.cpp
|
| +++ b/Source/core/css/CSSVariablesMap.cpp
|
| @@ -55,11 +55,11 @@ bool CSSVariablesMap::has(const AtomicString& name) const
|
| return false;
|
| }
|
|
|
| -void CSSVariablesMap::set(const AtomicString& name, const String& value, ExceptionState& es)
|
| +void CSSVariablesMap::set(const AtomicString& name, const String& value, ExceptionState& exceptionState)
|
| {
|
| if (!m_styleDeclaration)
|
| return;
|
| - if (m_styleDeclaration->setVariableValue(name, value, es)) {
|
| + if (m_styleDeclaration->setVariableValue(name, value, exceptionState)) {
|
| Iterators::iterator end = m_activeIterators.end();
|
| for (Iterators::iterator it = m_activeIterators.begin(); it != end; ++it)
|
| (*it)->addedVariable(name);
|
| @@ -79,11 +79,11 @@ bool CSSVariablesMap::remove(const AtomicString& name)
|
| return false;
|
| }
|
|
|
| -void CSSVariablesMap::clear(ExceptionState& es)
|
| +void CSSVariablesMap::clear(ExceptionState& exceptionState)
|
| {
|
| if (!m_styleDeclaration)
|
| return;
|
| - if (m_styleDeclaration->clearVariables(es)) {
|
| + if (m_styleDeclaration->clearVariables(exceptionState)) {
|
| Iterators::iterator end = m_activeIterators.end();
|
| for (Iterators::iterator it = m_activeIterators.begin(); it != end; ++it)
|
| (*it)->clearedVariables();
|
|
|