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

Delta Between Two Patch Sets: include/AdblockPlus/FilterEngine.h

Issue 9987009: Interface for the libadblockplus API (Closed)
Left Patch Set: Created March 26, 2013, 11:45 a.m.
Right Patch Set: Reduce redundant redundancy Created March 27, 2013, 6:45 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Right: Side by side diff | Download
LEFTRIGHT
(no file at all)
1 #include <vector>
2 #include <string>
3
4 namespace AdblockPlus
5 {
6 class JsEngine;
7
8 struct Subscription
9 {
10 std::string url;
11 std::string title;
12
13 Subscription(const std::string& url, const std::string& title);
14 };
15
16 class FilterEngine
17 {
18 public:
19 explicit FilterEngine(JsEngine& jsEngine);
20 void AddSubscription(Subscription subscription);
21 void RemoveSubscription(const Subscription& subscription);
22 const Subscription* FindSubscription(const std::string& url) const;
23 const std::vector<Subscription>& GetSubscriptions() const;
24 void UpdateSubscriptionFilters(const Subscription& subscription);
25 std::vector<Subscription> FetchAvailableSubscriptions();
26 bool Matches(const std::string& url,
27 const std::string& contentType) const;
28 std::vector<std::string> GetElementHidingRules() const;
29
30 private:
31 JsEngine& jsEngine;
32 std::vector<Subscription> subscriptions;
33 };
34 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld