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

Unified Diff: Source/modules/indexeddb/IDBObjectStore.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/IDBObjectStore.h
diff --git a/Source/modules/indexeddb/IDBObjectStore.h b/Source/modules/indexeddb/IDBObjectStore.h
index ef646d935ebb51d4e9646e7f9f0706239477586b..8f48513b823d9b5728b83be2bc0bdffde1e47fa5 100644
--- a/Source/modules/indexeddb/IDBObjectStore.h
+++ b/Source/modules/indexeddb/IDBObjectStore.h
@@ -120,7 +120,7 @@ private:
IDBObjectStoreMetadata m_metadata;
Member<IDBTransaction> m_transaction;
- bool m_deleted;
+ bool m_deleted = false;
typedef HeapHashMap<String, Member<IDBIndex>> IDBIndexMap;
IDBIndexMap m_indexMap;

Powered by Google App Engine
This is Rietveld 408576698