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

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

Issue 1826283004: Revert NotImplemented() changes in r383029 and r383047. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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') | third_party/WebKit/Source/platform/NotImplemented.h » ('j') | 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 98ff6f1096e6d3120f5b30a703873b89267647c4..63fae0b01ba05f1bb4970340226563235fea6a0d 100644
--- a/third_party/WebKit/Source/platform/Logging.cpp
+++ b/third_party/WebKit/Source/platform/Logging.cpp
@@ -35,6 +35,7 @@ WTFLogChannel LogFileAPI = { WTFLogChannelOff };
WTFLogChannel LogFonts = { WTFLogChannelOff };
WTFLogChannel LogMedia = { WTFLogChannelOff };
WTFLogChannel LogNetwork = { WTFLogChannelOff };
+WTFLogChannel LogNotYetImplemented = { WTFLogChannelOff };
WTFLogChannel LogPlugins = { WTFLogChannelOff };
WTFLogChannel LogResourceLoading = { WTFLogChannelOff };
WTFLogChannel LogSQLDatabase = { WTFLogChannelOff };
@@ -53,6 +54,9 @@ WTFLogChannel* getChannelFromName(const String& channelName)
if (equalIgnoringCase(channelName, String("Network")))
return &LogNetwork;
+ if (equalIgnoringCase(channelName, String("NotYetImplemented")))
+ return &LogNotYetImplemented;
+
if (equalIgnoringCase(channelName, String("ResourceLoading")))
return &LogResourceLoading;
« no previous file with comments | « third_party/WebKit/Source/platform/Logging.h ('k') | third_party/WebKit/Source/platform/NotImplemented.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698