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

Unified Diff: compiled/library.h

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.h
===================================================================
--- a/compiled/library.h
+++ b/compiled/library.h
@@ -28,16 +28,17 @@
extern "C"
{
void LogString(const String& str);
void LogInteger(int i);
void LogPointer(const void* ptr);
void LogError(const String& str);
char16_t CharToLower(char16_t charCode);
+ char16_t CharToUpper(char16_t charCode);
hub 2017/10/25 01:19:38 I shall remove this one too.
void JSNotifyFilterChange(FilterNotifier::Topic topic, Filter& filter,
Subscription* subscription, unsigned int position);
void JSNotifySubscriptionChange(FilterNotifier::Topic topic,
Subscription& subscription);
int GenerateRegExp(const String& regexp, bool matchCase);
void DeleteRegExp(int id);
bool TestRegExp(int id, const String& str);
}

Powered by Google App Engine
This is Rietveld