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

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: 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..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

Powered by Google App Engine
This is Rietveld 408576698