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 12e0730604c606f583033a3bad685d8083bee1d7..4c553ca4bdf500f09c8b6ca99453fbc5cb2966f3 100644 |
--- a/content/common/indexed_db/indexed_db_key.cc |
+++ b/content/common/indexed_db/indexed_db_key.cc |
@@ -94,29 +94,6 @@ IndexedDBKey::IndexedDBKey(const base::string16& string) |
IndexedDBKey::~IndexedDBKey() {} |
-IndexedDBKey::IndexedDBKey(const IndexedDBKey& other) |
- : type_(other.type_), |
- array_(other.array_), |
- binary_(other.binary_), |
- string_(other.string_), |
- date_(other.date_), |
- number_(other.number_), |
- size_estimate_(other.size_estimate_) { |
- DCHECK((!IsValid() && !other.IsValid()) || CompareTo(other) == 0); |
-} |
- |
-IndexedDBKey& IndexedDBKey::operator=(const IndexedDBKey& other) { |
- type_ = other.type_; |
- array_ = other.array_; |
- binary_ = other.binary_; |
- string_ = other.string_; |
- date_ = other.date_; |
- number_ = other.number_; |
- size_estimate_ = other.size_estimate_; |
- DCHECK((!IsValid() && !other.IsValid()) || CompareTo(other) == 0); |
- return *this; |
-} |
- |
bool IndexedDBKey::IsValid() const { |
if (type_ == WebIDBKeyTypeInvalid || type_ == WebIDBKeyTypeNull) |
return false; |