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

Unified Diff: compiled/subscription/DownloadableSubscription.h

Issue 29548581: Issue 4128, 5138 - Add Parser and Serializer implemented in C++ Base URL: https://github.com/adblockplus/adblockpluscore.git
Patch Set: rebase Created March 7, 2018, 12:01 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/subscription/DownloadableSubscription.h
diff --git a/compiled/subscription/DownloadableSubscription.h b/compiled/subscription/DownloadableSubscription.h
index 12203e777eca8b0b7919632abeed10daa79b7a37..b153ef7019e38c4c98755b664d584f03ac6a642b 100644
--- a/compiled/subscription/DownloadableSubscription.h
+++ b/compiled/subscription/DownloadableSubscription.h
@@ -29,7 +29,7 @@ class DownloadableSubscription : public Subscription
{
public:
static constexpr Type classType = Type::DOWNLOADABLE;
- explicit DownloadableSubscription(const String& id);
+ explicit DownloadableSubscription(const String& id, const KeyValues& properties);
SUBSCRIPTION_PROPERTY(bool, mFixedTitle, SUBSCRIPTION_FIXEDTITLE,
GetFixedTitle, SetFixedTitle);
@@ -56,9 +56,9 @@ public:
SUBSCRIPTION_PROPERTY(int, mDownloadCount, NONE,
GetDownloadCount, SetDownloadCount);
- OwnedString BINDINGS_EXPORTED Serialize() const;
+ OwnedString SerializeProperties() const;
};
typedef intrusive_ptr<DownloadableSubscription> DownloadableSubscriptionPtr;
-ABP_NS_END
+ABP_NS_END

Powered by Google App Engine
This is Rietveld