| Index: Source/modules/indexeddb/IDBRequest.cpp
|
| diff --git a/Source/modules/indexeddb/IDBRequest.cpp b/Source/modules/indexeddb/IDBRequest.cpp
|
| index 188bc42ad630b38dde0d44819008a1d09f5604dc..e352dcda65be057bbc3b64ef6a534a52cbb773fa 100644
|
| --- a/Source/modules/indexeddb/IDBRequest.cpp
|
| +++ b/Source/modules/indexeddb/IDBRequest.cpp
|
| @@ -78,19 +78,19 @@ IDBRequest::~IDBRequest()
|
| ASSERT(m_readyState == DONE || m_readyState == EarlyDeath || !executionContext());
|
| }
|
|
|
| -PassRefPtr<IDBAny> IDBRequest::result(ExceptionState& es) const
|
| +PassRefPtr<IDBAny> IDBRequest::result(ExceptionState& exceptionState) const
|
| {
|
| if (m_readyState != DONE) {
|
| - es.throwDOMException(InvalidStateError, IDBDatabase::requestNotFinishedErrorMessage);
|
| + exceptionState.throwDOMException(InvalidStateError, IDBDatabase::requestNotFinishedErrorMessage);
|
| return 0;
|
| }
|
| return m_result;
|
| }
|
|
|
| -PassRefPtr<DOMError> IDBRequest::error(ExceptionState& es) const
|
| +PassRefPtr<DOMError> IDBRequest::error(ExceptionState& exceptionState) const
|
| {
|
| if (m_readyState != DONE) {
|
| - es.throwDOMException(InvalidStateError, IDBDatabase::requestNotFinishedErrorMessage);
|
| + exceptionState.throwDOMException(InvalidStateError, IDBDatabase::requestNotFinishedErrorMessage);
|
| return 0;
|
| }
|
| return m_error;
|
|
|