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

Unified Diff: Source/modules/indexeddb/IDBIndex.h

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/IDBIndex.h
diff --git a/Source/modules/indexeddb/IDBIndex.h b/Source/modules/indexeddb/IDBIndex.h
index 63fa4f66be52abd65d5eee6721193d6e32366f1e..4a2d15ca6a08cb56c54b0a90558a91fda1e9f957 100644
--- a/Source/modules/indexeddb/IDBIndex.h
+++ b/Source/modules/indexeddb/IDBIndex.h
@@ -87,7 +87,7 @@ private:
IDBIndexMetadata m_metadata;
Member<IDBObjectStore> m_objectStore;
Member<IDBTransaction> m_transaction;
- bool m_deleted;
+ bool m_deleted = false;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698