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

Unified Diff: compiled/subscription/UserDefinedSubscription.h

Issue 29532613: Issue 5604 - Make sure to put EMSCRIPTEN_BINDINGS after the type consistently (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore
Patch Set: Created Aug. 31, 2017, noon
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
« no previous file with comments | « compiled/subscription/Subscription.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: compiled/subscription/UserDefinedSubscription.h
===================================================================
--- a/compiled/subscription/UserDefinedSubscription.h
+++ b/compiled/subscription/UserDefinedSubscription.h
@@ -23,25 +23,25 @@
class UserDefinedSubscription : public Subscription
{
private:
int mDefaults;
public:
explicit UserDefinedSubscription(const String& id);
- BINDINGS_EXPORTED bool IsDefaultFor(const Filter* filter) const;
- BINDINGS_EXPORTED void MakeDefaultFor(const Filter* filter);
- BINDINGS_EXPORTED bool IsGeneric() const
+ bool BINDINGS_EXPORTED IsDefaultFor(const Filter* filter) const;
+ void BINDINGS_EXPORTED MakeDefaultFor(const Filter* filter);
+ bool BINDINGS_EXPORTED IsGeneric() const
{
return mDefaults == 0;
}
- BINDINGS_EXPORTED void InsertFilterAt(Filter* filter, unsigned pos);
- BINDINGS_EXPORTED bool RemoveFilterAt(unsigned pos);
- BINDINGS_EXPORTED OwnedString Serialize() const;
+ void BINDINGS_EXPORTED InsertFilterAt(Filter* filter, unsigned pos);
+ bool BINDINGS_EXPORTED RemoveFilterAt(unsigned pos);
+ OwnedString BINDINGS_EXPORTED Serialize() const;
};
template<>
inline UserDefinedSubscription* Subscription::As<UserDefinedSubscription>()
{
if (mType != Type::USERDEFINED)
return nullptr;
« no previous file with comments | « compiled/subscription/Subscription.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld