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

Side by Side Diff: compiled/api.h

Issue 29333474: Issue 4125 - [emscripten] Convert filter classes to C++ (Closed)
Patch Set: Call parameters in JS wrappers generated statically Created Jan. 28, 2016, 9:26 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « compiled/WhitelistFilter.cpp ('k') | compiled/api.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #ifndef ADBLOCK_PLUS_TOOLS_H
2 #define ADBLOCK_PLUS_TOOLS_H
3
4 #include <emscripten.h>
5
6 #define FILTER_PROPERTY(type, name, getter, setter) \
7 private:\
8 type name;\
9 public:\
10 type getter() const\
11 {\
12 return name;\
13 }\
14 void setter(type value)\
15 {\
16 if (name != value)\
17 {\
18 type oldvalue = name;\
19 name = value;\
20 String action(u"filter."_str #name);\
21 EM_ASM_ARGS({\
22 var filter = new (exports[Filter_mapping[$2]])($1);\
23 FilterNotifier.triggerListeners(getStringData($0), filter, $3, $4);\
24 }, &action, this, GetType(), value, oldvalue);\
25 }\
26 }
27
28 #endif
OLDNEW
« no previous file with comments | « compiled/WhitelistFilter.cpp ('k') | compiled/api.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld