OLD | NEW |
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 28 matching lines...) Expand all Loading... |
39 { | 39 { |
40 void LogString(const ABP_NS::String& str); | 40 void LogString(const ABP_NS::String& str); |
41 void LogInteger(int i); | 41 void LogInteger(int i); |
42 void LogPointer(const void* ptr); | 42 void LogPointer(const void* ptr); |
43 void LogError(const ABP_NS::String& str); | 43 void LogError(const ABP_NS::String& str); |
44 char16_t CharToLower(char16_t charCode); | 44 char16_t CharToLower(char16_t charCode); |
45 void JSNotifyFilterChange(ABP_NS::FilterNotifier::Topic topic, ABP_NS::Filter&
filter, | 45 void JSNotifyFilterChange(ABP_NS::FilterNotifier::Topic topic, ABP_NS::Filter&
filter, |
46 ABP_NS::Subscription* subscription, unsigned int position); | 46 ABP_NS::Subscription* subscription, unsigned int position); |
47 void JSNotifySubscriptionChange(ABP_NS::FilterNotifier::Topic topic, | 47 void JSNotifySubscriptionChange(ABP_NS::FilterNotifier::Topic topic, |
48 ABP_NS::Subscription& subscription); | 48 ABP_NS::Subscription& subscription); |
49 RegExpID GenerateRegExp(const ABP_NS::String& regexp, bool matchCase); | 49 ABP_NS::RegExpID GenerateRegExp(const ABP_NS::String& regexp, bool matchCase); |
50 void DeleteRegExp(RegExpID id); | 50 void DeleteRegExp(ABP_NS::RegExpID id); |
51 bool TestRegExp(RegExpID id, const ABP_NS::String& str); | 51 bool TestRegExp(ABP_NS::RegExpID id, const ABP_NS::String& str); |
52 } | 52 } |
OLD | NEW |