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

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

Issue 61773005: Rename WebKit namespace to blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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: Source/modules/webdatabase/sqlite/SQLiteFileSystem.cpp
diff --git a/Source/modules/webdatabase/sqlite/SQLiteFileSystem.cpp b/Source/modules/webdatabase/sqlite/SQLiteFileSystem.cpp
index 3b6fed9e64a831f2b933edd492f2d63371dd0735..8e5dd11e5c9c66752003dad60b8eea0d85bb3ed0 100644
--- a/Source/modules/webdatabase/sqlite/SQLiteFileSystem.cpp
+++ b/Source/modules/webdatabase/sqlite/SQLiteFileSystem.cpp
@@ -89,12 +89,12 @@ bool SQLiteFileSystem::deleteEmptyDatabaseDirectory(const String&)
bool SQLiteFileSystem::deleteDatabaseFile(const String& fileName)
{
- return (WebKit::Platform::current()->databaseDeleteFile(fileName, false) == SQLITE_OK);
+ return (blink::Platform::current()->databaseDeleteFile(fileName, false) == SQLITE_OK);
}
long long SQLiteFileSystem::getDatabaseFileSize(const String& fileName)
{
- return WebKit::Platform::current()->databaseGetFileSize(fileName);
+ return blink::Platform::current()->databaseGetFileSize(fileName);
}
} // namespace WebCore
« no previous file with comments | « Source/modules/webdatabase/QuotaTracker.cpp ('k') | Source/modules/webdatabase/sqlite/SQLiteFileSystemPosix.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698