| Index: third_party/WebKit/Source/modules/webdatabase/ChangeVersionWrapper.h
|
| diff --git a/third_party/WebKit/Source/modules/webdatabase/ChangeVersionWrapper.h b/third_party/WebKit/Source/modules/webdatabase/ChangeVersionWrapper.h
|
| index dbf4c2074baf798da7e354271d92970953369500..00d7b1c52d6356153b123587810beeabd5ec9b4e 100644
|
| --- a/third_party/WebKit/Source/modules/webdatabase/ChangeVersionWrapper.h
|
| +++ b/third_party/WebKit/Source/modules/webdatabase/ChangeVersionWrapper.h
|
| @@ -31,6 +31,7 @@
|
| #include "modules/webdatabase/SQLTransactionBackend.h"
|
| #include "platform/heap/Handle.h"
|
| #include "wtf/Forward.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -50,7 +51,7 @@ private:
|
|
|
| String m_oldVersion;
|
| String m_newVersion;
|
| - OwnPtr<SQLErrorData> m_sqlError;
|
| + std::unique_ptr<SQLErrorData> m_sqlError;
|
| };
|
|
|
| } // namespace blink
|
|
|