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

Unified Diff: compiled/library.js

Issue 29587914: Issue 5142 - Convert Element Hiding to C++ (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore/
Patch Set: Created Oct. 25, 2017, 1:07 a.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: compiled/library.js
===================================================================
--- a/compiled/library.js
+++ b/compiled/library.js
@@ -38,16 +38,21 @@
console.error(new Error(readString(str)).stack);
},
CharToLower: function(charCode)
{
return String.fromCharCode(charCode).toLowerCase().charCodeAt(0);
},
+ CharToUpper: function(charCode)
hub 2017/10/25 01:19:38 and remove this too.
+ {
+ return String.fromCharCode(charCode).toUpperCase().charCodeAt(0);
+ },
+
JSNotifyFilterChange: function(topic, filter, subscription, position)
{
if (subscription)
subscription = exports.Subscription.fromPointer(subscription);
FilterNotifier.triggerListeners(notifierTopics.get(topic),
exports.Filter.fromPointer(filter), subscription, position);
},

Powered by Google App Engine
This is Rietveld