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

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

Issue 2567913002: Rename ActiveDOMObject to SuspendableObject (Closed)
Patch Set: Created 4 years 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
Index: third_party/WebKit/Source/modules/indexeddb/IDBRequest.cpp
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBRequest.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBRequest.cpp
index e51de04d0b88241bda7c88b59d608418114f8340..987de55d2398f83b00e08368bf36a76348ce9fee 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBRequest.cpp
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBRequest.cpp
@@ -67,7 +67,7 @@ IDBRequest::IDBRequest(ScriptState* scriptState,
IDBAny* source,
IDBTransaction* transaction)
: ActiveScriptWrappable(this),
- ActiveDOMObject(scriptState->getExecutionContext()),
+ SuspendableObject(scriptState->getExecutionContext()),
m_transaction(transaction),
m_source(source) {}
@@ -86,7 +86,7 @@ DEFINE_TRACE(IDBRequest) {
visitor->trace(m_cursorKey);
visitor->trace(m_cursorPrimaryKey);
EventTargetWithInlineData::trace(visitor);
- ActiveDOMObject::trace(visitor);
+ SuspendableObject::trace(visitor);
}
ScriptValue IDBRequest::result(ScriptState* scriptState,
@@ -415,7 +415,7 @@ const AtomicString& IDBRequest::interfaceName() const {
}
ExecutionContext* IDBRequest::getExecutionContext() const {
- return ActiveDOMObject::getExecutionContext();
+ return SuspendableObject::getExecutionContext();
}
DispatchEventResult IDBRequest::dispatchEventInternal(Event* event) {

Powered by Google App Engine
This is Rietveld 408576698