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

Unified Diff: Source/modules/indexeddb/IDBRequest.cpp

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
« no previous file with comments | « Source/modules/indexeddb/IDBObjectStore.cpp ('k') | Source/modules/indexeddb/IDBTransaction.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « Source/modules/indexeddb/IDBObjectStore.cpp ('k') | Source/modules/indexeddb/IDBTransaction.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698