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

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

Issue 2688383003: Remove unnecessary SafePointScope (Closed)
Patch Set: temp Created 3 years, 10 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/SQLiteFileSystem.cpp
diff --git a/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteFileSystem.cpp b/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteFileSystem.cpp
index 9c25341c57b2c7fbcc84118030f48cf04b468779..e87cfa1f22a5057f096a56840e8e45828c2352b2 100644
--- a/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteFileSystem.cpp
+++ b/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteFileSystem.cpp
@@ -42,7 +42,6 @@ namespace blink {
SQLiteFileSystem::SQLiteFileSystem() {}
int SQLiteFileSystem::openDatabase(const String& filename, sqlite3** database) {
- SafePointScope scope(BlinkGC::HeapPointersOnStack);
return sqlite3_open_v2(filename.utf8().data(), database,
SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE,
"chromium_vfs");

Powered by Google App Engine
This is Rietveld 408576698