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

Unified Diff: content/public/browser/indexed_db_info.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/public/browser/indexed_db_info.cc
diff --git a/content/public/browser/indexed_db_info.cc b/content/public/browser/indexed_db_info.cc
index 5ccaffb45c7d8b59474125b8dd4dbfa5c4c1d991..0736cf3316139a3c5b50a33e44eda8945f4d1026 100644
--- a/content/public/browser/indexed_db_info.cc
+++ b/content/public/browser/indexed_db_info.cc
@@ -15,4 +15,7 @@ IndexedDBInfo::IndexedDBInfo(const GURL& origin,
last_modified_(last_modified),
connection_count_(connection_count) {}
+IndexedDBInfo::IndexedDBInfo(const IndexedDBInfo& other) = default;
+IndexedDBInfo::~IndexedDBInfo() = default;
+IndexedDBInfo& IndexedDBInfo::operator=(IndexedDBInfo& other) = default;
cmumford 2015/02/17 16:34:50 Need space before closing brace.
Daniel Bratell 2015/02/18 13:55:45 Done.
} // namespace content
« content/public/browser/indexed_db_info.h ('K') | « content/public/browser/indexed_db_info.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698