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

Unified Diff: compiled/library.h

Issue 29532626: Issue 5603 - Support references in parameters of exported functions (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore
Patch Set: Created Aug. 31, 2017, 12:36 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: compiled/library.h
===================================================================
--- a/compiled/library.h
+++ b/compiled/library.h
@@ -28,16 +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);
+ 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