Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: Shared/PluginDebug.cpp

Issue 9998007: Initial libadblockplus integration (Closed)
Patch Set: Created April 1, 2013, 9:55 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Shared/PluginDebug.cpp
===================================================================
--- a/Shared/PluginDebug.cpp
+++ b/Shared/PluginDebug.cpp
@@ -191,7 +191,7 @@
}
-void CPluginDebug::DebugResultBlocking(const CString& type, const CString& src, const CString& filter, const CString& filterFile)
+void CPluginDebug::DebugResultBlocking(const CString& type, const CString& src)
{
CString srcTrunc = src;
if (srcTrunc.GetLength() > 100)
@@ -200,13 +200,13 @@
}
CString blocking;
- blocking.Format(L"%-8s %-100s Blocked %-20s - %s", type, srcTrunc, filterFile, filter);
+ blocking.Format(L"%-8s %-100s Blocked %s", type, srcTrunc);
DebugResult(blocking);
}
-void CPluginDebug::DebugResultHiding(const CString& tag, const CString& src, const CString& filter, const CString& filterFile)
+void CPluginDebug::DebugResultHiding(const CString& tag, const CString& src, const CString& filter)
{
CString srcTrunc = src;
if (srcTrunc.GetLength() > 100)
@@ -215,7 +215,7 @@
}
CString blocking;
- blocking.Format(L"%-8s %-100s Hidden %-20s - %s", tag, srcTrunc, filterFile, filter);
+ blocking.Format(L"%-8s %-100s Hidden - %s", tag, srcTrunc, filter);
DebugResult(blocking);
}

Powered by Google App Engine
This is Rietveld