| 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 | 9 | 
| 10 | 10 | 
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 72   void SetPref(const std::wstring& name, const int64_t& value); | 72   void SetPref(const std::wstring& name, const int64_t& value); | 
| 73   void SetPref(const std::wstring& name, bool value); | 73   void SetPref(const std::wstring& name, bool value); | 
| 74   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""); | 
| 75   std::wstring GetPref(const std::wstring& name, const wchar_t* defaultValue); | 75   std::wstring GetPref(const std::wstring& name, const wchar_t* defaultValue); | 
| 76   bool GetPref(const std::wstring& name, bool defaultValue = false); | 76   bool GetPref(const std::wstring& name, bool defaultValue = false); | 
| 77   int64_t GetPref(const std::wstring& name, int64_t defaultValue = 0); | 77   int64_t GetPref(const std::wstring& name, int64_t defaultValue = 0); | 
| 78   void CheckForUpdates(HWND callbackWindow); | 78   void CheckForUpdates(HWND callbackWindow); | 
| 79   std::wstring GetAppLocale(); | 79   std::wstring GetAppLocale(); | 
| 80   std::wstring GetDocumentationLink(); | 80   std::wstring GetDocumentationLink(); | 
| 81   bool TogglePluginEnabled(); | 81   bool TogglePluginEnabled(); | 
|  | 82   std::wstring GetHostFromUrl(const std::wstring& url); | 
| 82 | 83 | 
| 83   bool IsFirstRun(); | 84   bool IsFirstRun(); | 
| 84 }; | 85 }; | 
| 85 | 86 | 
| 86 #endif // _ADBLOCK_PLUS_CLIENT_H_ | 87 #endif // _ADBLOCK_PLUS_CLIENT_H_ | 
| OLD | NEW | 
|---|