| Index: third_party/WebKit/Source/modules/indexeddb/IDBKey.h
|
| diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBKey.h b/third_party/WebKit/Source/modules/indexeddb/IDBKey.h
|
| index be542af81fd22e1437a63bace19f71e790ff3a2f..95b035bd6be0ae14bc87340f4097eca2cd4bd032 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBKey.h
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBKey.h
|
| @@ -115,7 +115,7 @@ class MODULES_EXPORT IDBKey : public GarbageCollectedFinalized<IDBKey> {
|
| IDBKey(Type type, double number) : m_type(type), m_number(number) {}
|
| explicit IDBKey(const String& value) : m_type(StringType), m_string(value) {}
|
| explicit IDBKey(PassRefPtr<SharedBuffer> value)
|
| - : m_type(BinaryType), m_binary(value) {}
|
| + : m_type(BinaryType), m_binary(std::move(value)) {}
|
| explicit IDBKey(const KeyArray& keyArray)
|
| : m_type(ArrayType), m_array(keyArray) {}
|
|
|
|
|