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

Unified Diff: compiled/library.h

Issue 29426559: Issue 5137 - [emscripten] Added basic filter storage implementation (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore
Patch Set: Fixed bogus assert Created Aug. 31, 2017, 12:44 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
« no previous file with comments | « compiled/bindings/main.cpp ('k') | compiled/library.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: compiled/library.h
===================================================================
--- a/compiled/library.h
+++ b/compiled/library.h
@@ -28,15 +28,16 @@ namespace FilterNotifier
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);
- void JSNotifyFilterChange(FilterNotifier::Topic topic, Filter* filter);
+ 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);
}
« no previous file with comments | « compiled/bindings/main.cpp ('k') | compiled/library.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld