| Index: third_party/WebKit/Source/modules/indexeddb/IDBOpenDBRequest.cpp
|
| diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBOpenDBRequest.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBOpenDBRequest.cpp
|
| index 19a2a0500ca17704c6fbe03103a5ff49b8bff3db..72d7eb4d532fd1c6ff953f96826d8b3194c0707a 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBOpenDBRequest.cpp
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBOpenDBRequest.cpp
|
| @@ -161,7 +161,7 @@ void IDBOpenDBRequest::onSuccess(int64_t oldVersion) {
|
| }
|
|
|
| bool IDBOpenDBRequest::shouldEnqueueEvent() const {
|
| - if (m_contextStopped || !getExecutionContext())
|
| + if (!getExecutionContext())
|
| return false;
|
| DCHECK(m_readyState == PENDING || m_readyState == DONE);
|
| if (m_requestAborted)
|
|
|