| OLD | NEW | 
|---|
| 1 #ifndef _ADBLOCK_PLUS_CLIENT_H_ | 1 #ifndef _ADBLOCK_PLUS_CLIENT_H_ | 
| 2 #define _ADBLOCK_PLUS_CLIENT_H_ | 2 #define _ADBLOCK_PLUS_CLIENT_H_ | 
| 3 | 3 | 
| 4 | 4 | 
| 5 #include "PluginTypedef.h" | 5 #include "PluginTypedef.h" | 
| 6 #include "PluginClientBase.h" | 6 #include "PluginClientBase.h" | 
| 7 #include "../shared/Communication.h" | 7 #include "../shared/Communication.h" | 
| 8 #include "../shared/CriticalSection.h" | 8 #include "../shared/CriticalSection.h" | 
|  | 9 #include <AdblockPlus/FilterEngine.h> | 
| 9 | 10 | 
| 10 | 11 | 
| 11 class CPluginFilter; | 12 class CPluginFilter; | 
| 12 | 13 | 
| 13 struct SubscriptionDescription | 14 struct SubscriptionDescription | 
| 14 { | 15 { | 
| 15   std::wstring url; | 16   std::wstring url; | 
| 16   std::wstring title; | 17   std::wstring title; | 
| 17   std::wstring specialization; | 18   std::wstring specialization; | 
| 18   bool listed; | 19   bool listed; | 
| (...skipping 23 matching lines...) Expand all  Loading... | 
| 42 public: | 43 public: | 
| 43 | 44 | 
| 44   static CAdblockPlusClient* s_instance; | 45   static CAdblockPlusClient* s_instance; | 
| 45 | 46 | 
| 46   ~CAdblockPlusClient(); | 47   ~CAdblockPlusClient(); | 
| 47 | 48 | 
| 48   static CAdblockPlusClient* GetInstance(); | 49   static CAdblockPlusClient* GetInstance(); | 
| 49 | 50 | 
| 50   // Removes the url from the list of whitelisted urls if present | 51   // Removes the url from the list of whitelisted urls if present | 
| 51   // Only called from ui thread | 52   // Only called from ui thread | 
| 52   bool ShouldBlock(const std::wstring& src, int contentType, const std::wstring&
     domain, bool addDebug=false); | 53   bool ShouldBlock(const std::wstring& src, AdblockPlus::FilterEngine::ContentTy
    pe contentType, const std::wstring& domain, bool addDebug=false); | 
| 53 | 54 | 
| 54   bool IsElementHidden(const std::wstring& tag, IHTMLElement* pEl, const std::ws
    tring& domain, const std::wstring& indent, CPluginFilter* filter); | 55   bool IsElementHidden(const std::wstring& tag, IHTMLElement* pEl, const std::ws
    tring& domain, const std::wstring& indent, CPluginFilter* filter); | 
| 55   bool IsWhitelistedUrl(const std::wstring& url); | 56   bool IsWhitelistedUrl(const std::wstring& url); | 
| 56   bool IsElemhideWhitelistedOnDomain(const std::wstring& url); | 57   bool IsElemhideWhitelistedOnDomain(const std::wstring& url); | 
| 57 | 58 | 
| 58   bool Matches(const std::wstring& url, const std::wstring& contentType, const s
    td::wstring& domain); | 59   bool Matches(const std::wstring& url, AdblockPlus::FilterEngine::ContentType c
    ontentType, const std::wstring& domain); | 
| 59   std::vector<std::wstring> GetElementHidingSelectors(const std::wstring& domain
    ); | 60   std::vector<std::wstring> GetElementHidingSelectors(const std::wstring& domain
    ); | 
| 60   std::vector<SubscriptionDescription> FetchAvailableSubscriptions(); | 61   std::vector<SubscriptionDescription> FetchAvailableSubscriptions(); | 
| 61   std::vector<SubscriptionDescription> GetListedSubscriptions(); | 62   std::vector<SubscriptionDescription> GetListedSubscriptions(); | 
| 62   bool IsAcceptableAdsEnabled(); | 63   bool IsAcceptableAdsEnabled(); | 
| 63   void SetSubscription(const std::wstring& url); | 64   void SetSubscription(const std::wstring& url); | 
| 64   void AddSubscription(const std::wstring& url); | 65   void AddSubscription(const std::wstring& url); | 
| 65   void RemoveSubscription(const std::wstring& url); | 66   void RemoveSubscription(const std::wstring& url); | 
| 66   void UpdateAllSubscriptions(); | 67   void UpdateAllSubscriptions(); | 
| 67   std::vector<std::wstring> GetExceptionDomains(); | 68   std::vector<std::wstring> GetExceptionDomains(); | 
| 68   void AddFilter(const std::wstring& text); | 69   void AddFilter(const std::wstring& text); | 
| 69   void RemoveFilter(const std::wstring& text); | 70   void RemoveFilter(const std::wstring& text); | 
| 70   void SetPref(const std::wstring& name, const std::wstring& value); | 71   void SetPref(const std::wstring& name, const std::wstring& value); | 
| 71   void SetPref(const std::wstring& name, const int64_t& value); | 72   void SetPref(const std::wstring& name, const int64_t& value); | 
| 72   void SetPref(const std::wstring& name, bool value); | 73   void SetPref(const std::wstring& name, bool value); | 
| 73   std::wstring GetPref(const std::wstring& name, const std::wstring& defaultValu
    e = L""); | 74   std::wstring GetPref(const std::wstring& name, const std::wstring& defaultValu
    e = L""); | 
| 74   std::wstring GetPref(const std::wstring& name, const wchar_t* defaultValue); | 75   std::wstring GetPref(const std::wstring& name, const wchar_t* defaultValue); | 
| 75   bool GetPref(const std::wstring& name, bool defaultValue = false); | 76   bool GetPref(const std::wstring& name, bool defaultValue = false); | 
| 76   int64_t GetPref(const std::wstring& name, int64_t defaultValue = 0); | 77   int64_t GetPref(const std::wstring& name, int64_t defaultValue = 0); | 
| 77   void CheckForUpdates(HWND callbackWindow); | 78   void CheckForUpdates(HWND callbackWindow); | 
| 78   std::wstring GetAppLocale(); | 79   std::wstring GetAppLocale(); | 
| 79   std::wstring GetDocumentationLink(); | 80   std::wstring GetDocumentationLink(); | 
| 80   bool TogglePluginEnabled(); | 81   bool TogglePluginEnabled(); | 
| 81   std::wstring GetHostFromUrl(const std::wstring& url); | 82   std::wstring GetHostFromUrl(const std::wstring& url); | 
| 82   int CompareVersions(const std::wstring& v1, const std::wstring& v2); | 83   int CompareVersions(const std::wstring& v1, const std::wstring& v2); | 
| 83 | 84 | 
| 84   bool IsFirstRun(); | 85   bool IsFirstRun(); | 
| 85 }; | 86 }; | 
| 86 | 87 | 
| 87 #endif // _ADBLOCK_PLUS_CLIENT_H_ | 88 #endif // _ADBLOCK_PLUS_CLIENT_H_ | 
| OLD | NEW | 
|---|