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: Created Sept. 18, 2017, 5:23 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 49cf9c45a78fa9734b907331f5fc0f6a3d103b92..bcb1c08fcf8d893ca5a7256d7f43b405611dad9a 100644
--- a/compiled/subscription/DownloadableSubscription.h
+++ b/compiled/subscription/DownloadableSubscription.h
@@ -25,7 +25,7 @@
class DownloadableSubscription : public Subscription
{
public:
- explicit DownloadableSubscription(const String& id);
+ explicit DownloadableSubscription(const String& id, const KeyValues& properties);
Wladimir Palant 2017/12/21 10:30:38 I'd rather not have properties as an additional co
SUBSCRIPTION_PROPERTY(bool, mFixedTitle, SUBSCRIPTION_FIXEDTITLE,
GetFixedTitle, SetFixedTitle);
@@ -52,7 +52,7 @@ public:
SUBSCRIPTION_PROPERTY(int, mDownloadCount, NONE,
GetDownloadCount, SetDownloadCount);
- OwnedString BINDINGS_EXPORTED Serialize() const;
+ OwnedString SerializeProperties() const;
};
template<>

Powered by Google App Engine
This is Rietveld