Chromium Code Reviews| Index: content/browser/indexed_db/indexed_db_backing_store.cc |
| diff --git a/content/browser/indexed_db/indexed_db_backing_store.cc b/content/browser/indexed_db/indexed_db_backing_store.cc |
| index f4b6f8d5a17d6495977450805c41d6d5748cef95..67cbaaffcee19c8462f814336654e44993839e3f 100644 |
| --- a/content/browser/indexed_db/indexed_db_backing_store.cc |
| +++ b/content/browser/indexed_db/indexed_db_backing_store.cc |
| @@ -4400,4 +4400,11 @@ IndexedDBBackingStore::Transaction::WriteDescriptor::WriteDescriptor( |
| last_modified_(last_modified) { |
| } |
| +IndexedDBBackingStore::Transaction::WriteDescriptor::WriteDescriptor( |
| + const WriteDescriptor& other) = default; |
| +IndexedDBBackingStore::Transaction::WriteDescriptor::~WriteDescriptor() = |
| + default; |
| +IndexedDBBackingStore::Transaction::WriteDescriptor& |
| + IndexedDBBackingStore::Transaction::WriteDescriptor:: |
| + operator=(const WriteDescriptor& other) = default; |
|
cmumford
2015/02/17 16:34:50
Space before } // namespace
Daniel Bratell
2015/02/18 13:55:44
Done.
|
| } // namespace content |