| Index: third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteStatement.cpp
|
| diff --git a/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteStatement.cpp b/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteStatement.cpp
|
| index 8d73d15d984020e140483a7d14ad7e9e6d609ec9..01adc4869117da290b98285e4528ae0c859cb5ad 100644
|
| --- a/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteStatement.cpp
|
| +++ b/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteStatement.cpp
|
| @@ -107,7 +107,7 @@ int SQLiteStatement::prepare()
|
| *statement = nullptr;
|
| int error;
|
| {
|
| - SafePointScope scope(ThreadState::HeapPointersOnStack);
|
| + SafePointScope scope(BlinkGC::HeapPointersOnStack);
|
|
|
| WTF_LOG(SQLDatabase, "SQL - prepare - %s", query.data());
|
|
|
| @@ -132,7 +132,7 @@ int SQLiteStatement::prepare()
|
|
|
| int SQLiteStatement::step()
|
| {
|
| - SafePointScope scope(ThreadState::HeapPointersOnStack);
|
| + SafePointScope scope(BlinkGC::HeapPointersOnStack);
|
| //ASSERT(m_isPrepared);
|
|
|
| if (!m_statement)
|
|
|