 Issue 29426559:
  Issue 5137 - [emscripten] Added basic filter storage implementation  (Closed) 
  Base URL: https://hg.adblockplus.org/adblockpluscore
    
  
    Issue 29426559:
  Issue 5137 - [emscripten] Added basic filter storage implementation  (Closed) 
  Base URL: https://hg.adblockplus.org/adblockpluscore| Index: compiled/subscription/Subscription.cpp | 
| =================================================================== | 
| --- a/compiled/subscription/Subscription.cpp | 
| +++ b/compiled/subscription/Subscription.cpp | 
| @@ -23,16 +23,19 @@ | 
| #include "UserDefinedSubscription.h" | 
| #include "../StringMap.h" | 
| namespace | 
| { | 
| StringMap<Subscription*> knownSubscriptions(16); | 
| } | 
| +class DownloadableSubscription; | 
| 
sergei
2017/08/24 13:32:06
These declarations are unnecessary because the hea
 
Wladimir Palant
2017/08/31 11:32:36
Done.
 | 
| +class UserDefinedSubscription; | 
| + | 
| Subscription::Subscription(Type type, const String& id) | 
| : mID(id), mType(type), mDisabled(false) | 
| { | 
| annotate_address(this, "Subscription"); | 
| } | 
| Subscription::~Subscription() | 
| { |