Index: content/common/indexed_db/indexed_db_key_range.cc |
diff --git a/content/common/indexed_db/indexed_db_key_range.cc b/content/common/indexed_db/indexed_db_key_range.cc |
index 47e0cf1a9ac0a6ff1e8eea6e46ea2b37789ce582..d061363fbde4c1baac4147da00eb091b0a9b96fb 100644 |
--- a/content/common/indexed_db/indexed_db_key_range.cc |
+++ b/content/common/indexed_db/indexed_db_key_range.cc |
@@ -27,7 +27,10 @@ IndexedDBKeyRange::IndexedDBKeyRange(const IndexedDBKey& lower, |
IndexedDBKeyRange::IndexedDBKeyRange(const IndexedDBKey& key) |
: lower_(key), upper_(key), lower_open_(false), upper_open_(false) {} |
-IndexedDBKeyRange::~IndexedDBKeyRange() {} |
+IndexedDBKeyRange::IndexedDBKeyRange(const IndexedDBKeyRange& other) = default; |
+IndexedDBKeyRange::~IndexedDBKeyRange() = default; |
+IndexedDBKeyRange& IndexedDBKeyRange::operator=( |
+ const IndexedDBKeyRange& other) = default; |
bool IndexedDBKeyRange::IsOnlyKey() const { |
if (lower_open_ || upper_open_) |