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

Unified Diff: content/browser/indexed_db/indexed_db_backing_store.cc

Issue 933823002: Avoid large inlined automatic methods in IndexedDB code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: One more CONTENT_EXPORT Created 5 years, 10 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: 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..070b92fd80ecbdeea5d11b7864bb247a8eb1b170 100644
--- a/content/browser/indexed_db/indexed_db_backing_store.cc
+++ b/content/browser/indexed_db/indexed_db_backing_store.cc
@@ -4400,4 +4400,12 @@ 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;
+
} // namespace content
« no previous file with comments | « content/browser/indexed_db/indexed_db_backing_store.h ('k') | content/browser/indexed_db/indexed_db_blob_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698