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

Side by Side Diff: compiled/subscription/UserDefinedSubscription.h

Issue 29532626: Issue 5603 - Support references in parameters of exported functions (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore
Patch Set: Created Aug. 31, 2017, 12:36 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * This file is part of Adblock Plus <https://adblockplus.org/>, 2 * This file is part of Adblock Plus <https://adblockplus.org/>,
3 * Copyright (C) 2006-present eyeo GmbH 3 * Copyright (C) 2006-present eyeo GmbH
4 * 4 *
5 * Adblock Plus is free software: you can redistribute it and/or modify 5 * Adblock Plus is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 3 as 6 * it under the terms of the GNU General Public License version 3 as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
8 * 8 *
9 * Adblock Plus is distributed in the hope that it will be useful, 9 * Adblock Plus is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 10 matching lines...) Expand all
21 #include "../filter/Filter.h" 21 #include "../filter/Filter.h"
22 #include "../bindings/runtime.h" 22 #include "../bindings/runtime.h"
23 23
24 class UserDefinedSubscription : public Subscription 24 class UserDefinedSubscription : public Subscription
25 { 25 {
26 private: 26 private:
27 int mDefaults; 27 int mDefaults;
28 28
29 public: 29 public:
30 explicit UserDefinedSubscription(const String& id); 30 explicit UserDefinedSubscription(const String& id);
31 bool BINDINGS_EXPORTED IsDefaultFor(const Filter* filter) const; 31 bool BINDINGS_EXPORTED IsDefaultFor(const Filter& filter) const;
32 void BINDINGS_EXPORTED MakeDefaultFor(const Filter* filter); 32 void BINDINGS_EXPORTED MakeDefaultFor(const Filter& filter);
33 bool BINDINGS_EXPORTED IsGeneric() const 33 bool BINDINGS_EXPORTED IsGeneric() const
34 { 34 {
35 return mDefaults == 0; 35 return mDefaults == 0;
36 } 36 }
37 void BINDINGS_EXPORTED InsertFilterAt(Filter* filter, unsigned pos); 37 void BINDINGS_EXPORTED InsertFilterAt(Filter& filter, unsigned pos);
38 bool BINDINGS_EXPORTED RemoveFilterAt(unsigned pos); 38 bool BINDINGS_EXPORTED RemoveFilterAt(unsigned pos);
39 OwnedString BINDINGS_EXPORTED Serialize() const; 39 OwnedString BINDINGS_EXPORTED Serialize() const;
40 }; 40 };
41 41
42 template<> 42 template<>
43 inline UserDefinedSubscription* Subscription::As<UserDefinedSubscription>() 43 inline UserDefinedSubscription* Subscription::As<UserDefinedSubscription>()
44 { 44 {
45 if (mType != Type::USERDEFINED) 45 if (mType != Type::USERDEFINED)
46 return nullptr; 46 return nullptr;
47 47
48 return static_cast<UserDefinedSubscription*>(this); 48 return static_cast<UserDefinedSubscription*>(this);
49 } 49 }
OLDNEW

Powered by Google App Engine
This is Rietveld