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

Unified Diff: third_party/WebKit/Source/platform/Logging.cpp

Issue 2229213002: Web SQL: Replace WTF_LOG() with STORAGE_DVLOG() or SQL_DVLOG(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Using LAZY_STREAM Created 4 years, 4 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
« no previous file with comments | « third_party/WebKit/Source/platform/Logging.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/Logging.cpp
diff --git a/third_party/WebKit/Source/platform/Logging.cpp b/third_party/WebKit/Source/platform/Logging.cpp
index 470ce598bdba284cbd7640e320332f7c93739db8..8e33e7e23adeac5999064f2022ffd87556d104e4 100644
--- a/third_party/WebKit/Source/platform/Logging.cpp
+++ b/third_party/WebKit/Source/platform/Logging.cpp
@@ -33,8 +33,6 @@ namespace blink {
WTFLogChannel LogNetwork = { WTFLogChannelOff };
WTFLogChannel LogResourceLoading = { WTFLogChannelOff };
-WTFLogChannel LogSQLDatabase = { WTFLogChannelOff };
-WTFLogChannel LogStorageAPI = { WTFLogChannelOff };
WTFLogChannel* getChannelFromName(const String& channelName)
{
@@ -47,12 +45,6 @@ WTFLogChannel* getChannelFromName(const String& channelName)
if (equalIgnoringCase(channelName, String("ResourceLoading")))
return &LogResourceLoading;
- if (equalIgnoringCase(channelName, String("SQLDatabase")))
- return &LogSQLDatabase;
-
- if (equalIgnoringCase(channelName, String("StorageAPI")))
- return &LogStorageAPI;
-
return 0;
}
« no previous file with comments | « third_party/WebKit/Source/platform/Logging.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698