| Index: Source/core/loader/appcache/ApplicationCache.cpp
|
| diff --git a/Source/core/loader/appcache/ApplicationCache.cpp b/Source/core/loader/appcache/ApplicationCache.cpp
|
| index 460605a220a006e57cbfa097f65876cc2f860d81..3c765a649a6632a5bae1ea199c7dc7b50950d3ce 100644
|
| --- a/Source/core/loader/appcache/ApplicationCache.cpp
|
| +++ b/Source/core/loader/appcache/ApplicationCache.cpp
|
| @@ -70,18 +70,18 @@ unsigned short ApplicationCache::status() const
|
| return cacheHost->status();
|
| }
|
|
|
| -void ApplicationCache::update(ExceptionState& es)
|
| +void ApplicationCache::update(ExceptionState& exceptionState)
|
| {
|
| ApplicationCacheHost* cacheHost = applicationCacheHost();
|
| if (!cacheHost || !cacheHost->update())
|
| - es.throwDOMException(InvalidStateError, ExceptionMessages::failedToExecute("update", "ApplicationCache", "there is no application cache to update."));
|
| + exceptionState.throwDOMException(InvalidStateError, ExceptionMessages::failedToExecute("update", "ApplicationCache", "there is no application cache to update."));
|
| }
|
|
|
| -void ApplicationCache::swapCache(ExceptionState& es)
|
| +void ApplicationCache::swapCache(ExceptionState& exceptionState)
|
| {
|
| ApplicationCacheHost* cacheHost = applicationCacheHost();
|
| if (!cacheHost || !cacheHost->swapCache())
|
| - es.throwDOMException(InvalidStateError, ExceptionMessages::failedToExecute("swapCache", "ApplicationCache", "there is no newer application cache to swap to."));
|
| + exceptionState.throwDOMException(InvalidStateError, ExceptionMessages::failedToExecute("swapCache", "ApplicationCache", "there is no newer application cache to swap to."));
|
| }
|
|
|
| void ApplicationCache::abort()
|
|
|