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

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

Issue 1861603003: Remove WTF_LOG(FileAPI,...) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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: 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 1d24295b85e2208e67a0327ad312cb1df8735998..a93cb56bde166b2377135d87839812d3a2c1c1d9 100644
--- a/third_party/WebKit/Source/platform/Logging.cpp
+++ b/third_party/WebKit/Source/platform/Logging.cpp
@@ -31,7 +31,6 @@
namespace blink {
-WTFLogChannel LogFileAPI = { WTFLogChannelOff };
WTFLogChannel LogMedia = { WTFLogChannelOff };
WTFLogChannel LogNetwork = { WTFLogChannelOff };
WTFLogChannel LogResourceLoading = { WTFLogChannelOff };
@@ -59,9 +58,6 @@ WTFLogChannel* getChannelFromName(const String& channelName)
if (equalIgnoringCase(channelName, String("StorageAPI")))
return &LogStorageAPI;
- if (equalIgnoringCase(channelName, String("FileAPI")))
- return &LogFileAPI;
-
if (equalIgnoringCase(channelName, String("Timers")))
return &LogTimers;

Powered by Google App Engine
This is Rietveld 408576698