| Index: third_party/WebKit/Source/modules/indexeddb/IDBAny.h
|
| diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBAny.h b/third_party/WebKit/Source/modules/indexeddb/IDBAny.h
|
| index 805cc96b6986013f1e017a1b43697eaa76eeb16e..494d918e6ab68280c08b771edbda9b55d87326c6 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBAny.h
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBAny.h
|
| @@ -70,7 +70,7 @@ public:
|
| }
|
| static IDBAny* create(PassRefPtr<IDBValue> value)
|
| {
|
| - return new IDBAny(value);
|
| + return new IDBAny(std::move(value));
|
| }
|
| static IDBAny* create(const Vector<RefPtr<IDBValue>>& values)
|
| {
|
|
|