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

Unified Diff: compiled/subscription/Subscription.cpp

Issue 29426559: Issue 5137 - [emscripten] Added basic filter storage implementation (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore
Patch Set: Rebased, updated copyright year Created Aug. 22, 2017, 11:03 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/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()
{

Powered by Google App Engine
This is Rietveld