Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(483)

Unified Diff: third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteStatement.cpp

Issue 1402103004: Oilpan: Factor out GC-related enum definitions to BlinkGC.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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)

Powered by Google App Engine
This is Rietveld 408576698