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

Unified Diff: Source/core/platform/Logging.cpp

Issue 14495004: Remove left-over PageCache stuff (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
« no previous file with comments | « Source/core/platform/Logging.h ('k') | Tools/DumpRenderTree/chromium/TestRunner/public/WebPreferences.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/platform/Logging.cpp
diff --git a/Source/core/platform/Logging.cpp b/Source/core/platform/Logging.cpp
index 1cb1552a748101ca6255e0232595a8af79f5053c..5ebb90f2a191286779463cf297cbf78936574aca 100644
--- a/Source/core/platform/Logging.cpp
+++ b/Source/core/platform/Logging.cpp
@@ -47,7 +47,6 @@ WTFLogChannel LogSQLDatabase = { 0x00000800, "WebCoreLogLevel", WTFLogChan
WTFLogChannel LogSpellingAndGrammar ={ 0x00001000, "WebCoreLogLevel", WTFLogChannelOff };
WTFLogChannel LogBackForward = { 0x00002000, "WebCoreLogLevel", WTFLogChannelOff };
WTFLogChannel LogHistory = { 0x00004000, "WebCoreLogLevel", WTFLogChannelOff };
-WTFLogChannel LogPageCache = { 0x00008000, "WebCoreLogLevel", WTFLogChannelOff };
WTFLogChannel LogPlatformLeaks = { 0x00010000, "WebCoreLogLevel", WTFLogChannelOff };
WTFLogChannel LogResourceLoading = { 0x00020000, "WebCoreLogLevel", WTFLogChannelOff };
@@ -107,9 +106,6 @@ WTFLogChannel* getChannelFromName(const String& channelName)
if (equalIgnoringCase(channelName, String("NotYetImplemented")))
return &LogNotYetImplemented;
- if (equalIgnoringCase(channelName, String("PageCache")))
- return &LogPageCache;
-
if (equalIgnoringCase(channelName, String("PlatformLeaks")))
return &LogPlatformLeaks;
« no previous file with comments | « Source/core/platform/Logging.h ('k') | Tools/DumpRenderTree/chromium/TestRunner/public/WebPreferences.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698