Index: content/common/indexed_db/indexed_db_key.cc |
diff --git a/content/common/indexed_db/indexed_db_key.cc b/content/common/indexed_db/indexed_db_key.cc |
index 4c553ca4bdf500f09c8b6ca99453fbc5cb2966f3..1a3d72ec7edf9d3f6e39c5afbf66e6eebcfa4b22 100644 |
--- a/content/common/indexed_db/indexed_db_key.cc |
+++ b/content/common/indexed_db/indexed_db_key.cc |
@@ -92,7 +92,9 @@ IndexedDBKey::IndexedDBKey(const base::string16& string) |
size_estimate_(kOverheadSize + |
(string.length() * sizeof(base::string16::value_type))) {} |
-IndexedDBKey::~IndexedDBKey() {} |
+IndexedDBKey::IndexedDBKey(const IndexedDBKey& other) = default; |
+IndexedDBKey::~IndexedDBKey() = default; |
+IndexedDBKey& IndexedDBKey::operator=(const IndexedDBKey& other) = default; |
bool IndexedDBKey::IsValid() const { |
if (type_ == WebIDBKeyTypeInvalid || type_ == WebIDBKeyTypeNull) |