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

Unified Diff: Source/WebCore/Modules/webdatabase/DatabaseManager.cpp

Issue 13643002: Rename LOG() to LOG_INFO() (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebase Created 7 years, 8 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: Source/WebCore/Modules/webdatabase/DatabaseManager.cpp
diff --git a/Source/WebCore/Modules/webdatabase/DatabaseManager.cpp b/Source/WebCore/Modules/webdatabase/DatabaseManager.cpp
index 878f8b71a86928c1d7f4cab676dbc998291ed9d7..31d00210b587011bd2d483c57a221b95aa4cf0db 100644
--- a/Source/WebCore/Modules/webdatabase/DatabaseManager.cpp
+++ b/Source/WebCore/Modules/webdatabase/DatabaseManager.cpp
@@ -223,8 +223,8 @@ static void logOpenDatabaseError(ScriptExecutionContext* context, const String&
{
UNUSED_PARAM(context);
UNUSED_PARAM(name);
- LOG(StorageAPI, "Database %s for origin %s not allowed to be established", name.ascii().data(),
- context->securityOrigin()->toString().ascii().data());
+ LOG_INFO(StorageAPI, "Database %s for origin %s not allowed to be established", name.ascii().data(),
+ context->securityOrigin()->toString().ascii().data());
}
PassRefPtr<DatabaseBackendBase> DatabaseManager::openDatabaseBackend(ScriptExecutionContext* context,
@@ -309,7 +309,7 @@ PassRefPtr<Database> DatabaseManager::openDatabase(ScriptExecutionContext* conte
InspectorInstrumentation::didOpenDatabase(context, database, context->securityOrigin()->host(), name, expectedVersion);
if (backend->isNew() && creationCallback.get()) {
- LOG(StorageAPI, "Scheduling DatabaseCreationCallbackTask for database %p\n", database.get());
+ LOG_INFO(StorageAPI, "Scheduling DatabaseCreationCallbackTask for database %p\n", database.get());
database->m_scriptExecutionContext->postTask(DatabaseCreationCallbackTask::create(database, creationCallback));
}
@@ -334,7 +334,7 @@ PassRefPtr<DatabaseSync> DatabaseManager::openDatabaseSync(ScriptExecutionContex
RefPtr<DatabaseSync> database = DatabaseSync::create(context, backend);
if (backend->isNew() && creationCallback.get()) {
- LOG(StorageAPI, "Invoking the creation callback for database %p\n", database.get());
+ LOG_INFO(StorageAPI, "Invoking the creation callback for database %p\n", database.get());
creationCallback->handleEvent(database.get());
}
« no previous file with comments | « Source/WebCore/Modules/webdatabase/DatabaseBackendBase.cpp ('k') | Source/WebCore/Modules/webdatabase/DatabaseTask.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698