| Index: third_party/WebKit/Source/modules/webdatabase/SQLTransactionBackend.cpp
|
| diff --git a/third_party/WebKit/Source/modules/webdatabase/SQLTransactionBackend.cpp b/third_party/WebKit/Source/modules/webdatabase/SQLTransactionBackend.cpp
|
| index fccdd59390290f3db17d866f1f77b89bf93ed3a3..2b7dd54c5cf03da0b3f45efa43fadac59ddb52a3 100644
|
| --- a/third_party/WebKit/Source/modules/webdatabase/SQLTransactionBackend.cpp
|
| +++ b/third_party/WebKit/Source/modules/webdatabase/SQLTransactionBackend.cpp
|
| @@ -28,6 +28,7 @@
|
|
|
| #include "modules/webdatabase/SQLTransactionBackend.h"
|
|
|
| +#include <memory>
|
| #include "modules/webdatabase/Database.h"
|
| #include "modules/webdatabase/DatabaseAuthorizer.h"
|
| #include "modules/webdatabase/DatabaseContext.h"
|
| @@ -41,9 +42,8 @@
|
| #include "modules/webdatabase/StorageLog.h"
|
| #include "modules/webdatabase/sqlite/SQLValue.h"
|
| #include "modules/webdatabase/sqlite/SQLiteTransaction.h"
|
| -#include "wtf/PtrUtil.h"
|
| -#include "wtf/StdLibExtras.h"
|
| -#include <memory>
|
| +#include "platform/wtf/PtrUtil.h"
|
| +#include "platform/wtf/StdLibExtras.h"
|
|
|
| // How does a SQLTransaction work?
|
| // ==============================
|
|
|