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

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

Issue 1323323002: IndexedDB: Various C++11isms and cleanup (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: True, false, whatever Created 5 years, 3 months 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: Source/modules/indexeddb/IDBRequest.cpp
diff --git a/Source/modules/indexeddb/IDBRequest.cpp b/Source/modules/indexeddb/IDBRequest.cpp
index aa93ade1b80c09d4be9d604ae6c9e7f8e233f60c..c0109980da091fbdee3d8104660f31fdec62ad40 100644
--- a/Source/modules/indexeddb/IDBRequest.cpp
+++ b/Source/modules/indexeddb/IDBRequest.cpp
@@ -60,19 +60,9 @@ IDBRequest* IDBRequest::create(ScriptState* scriptState, IDBAny* source, IDBTran
IDBRequest::IDBRequest(ScriptState* scriptState, IDBAny* source, IDBTransaction* transaction)
: ActiveDOMObject(scriptState->executionContext())
- , m_contextStopped(false)
, m_transaction(transaction)
- , m_readyState(PENDING)
- , m_requestAborted(false)
, m_scriptState(scriptState)
, m_source(source)
- , m_hasPendingActivity(true)
- , m_cursorType(IndexedDB::CursorKeyAndValue)
- , m_cursorDirection(WebIDBCursorDirectionNext)
- , m_pendingCursor(nullptr)
- , m_didFireUpgradeNeededEvent(false)
- , m_preventPropagation(false)
- , m_resultDirty(true)
{
}

Powered by Google App Engine
This is Rietveld 408576698