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

Unified Diff: src/plugin/PluginWbPassThrough.cpp

Issue 5081266177179648: Issue 1104 - Cannot uncheck Disable on website option in tool bar (Closed)
Patch Set: Created Feb. 23, 2015, 12:40 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: src/plugin/PluginWbPassThrough.cpp
diff --git a/src/plugin/PluginWbPassThrough.cpp b/src/plugin/PluginWbPassThrough.cpp
index 204090f8480c05d288c7c4b60fe642331266bcbe..d228683f1f1f9aca74e0554b71cb33b724f30477 100644
--- a/src/plugin/PluginWbPassThrough.cpp
+++ b/src/plugin/PluginWbPassThrough.cpp
@@ -38,19 +38,6 @@ namespace
"</body>"
"</html>";
- template <typename T>
- T ASCIIStringToLower(const T& text)
- {
- T textlower;
- std::transform(text.begin(), text.end(), std::back_inserter(textlower),
- [](T::value_type ch)
- {
- return std::tolower(ch, std::locale());
- }
- );
- return textlower;
- }
-
typedef AdblockPlus::FilterEngine::ContentType ContentType;
template <class T>

Powered by Google App Engine
This is Rietveld