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

Side by Side Diff: src/plugin/AdblockPlusClient.h

Issue 11557015: Tooltip notification. Check for update fixes. (Closed)
Patch Set: Created Sept. 5, 2013, 10:43 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 #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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 std::vector<std::wstring> GetExceptionDomains(); 65 std::vector<std::wstring> GetExceptionDomains();
66 void AddFilter(const std::wstring& text); 66 void AddFilter(const std::wstring& text);
67 void RemoveFilter(const std::wstring& text); 67 void RemoveFilter(const std::wstring& text);
68 void SetPref(const std::wstring& name, const std::wstring& value); 68 void SetPref(const std::wstring& name, const std::wstring& value);
69 void SetPref(const std::wstring& name, const int64_t& value); 69 void SetPref(const std::wstring& name, const int64_t& value);
70 void SetPref(const std::wstring& name, bool value); 70 void SetPref(const std::wstring& name, bool value);
71 std::wstring GetPref(const std::wstring& name, const std::wstring& defaultValu e = L""); 71 std::wstring GetPref(const std::wstring& name, const std::wstring& defaultValu e = L"");
72 std::wstring GetPref(const std::wstring& name, const wchar_t* defaultValue); 72 std::wstring GetPref(const std::wstring& name, const wchar_t* defaultValue);
73 bool GetPref(const std::wstring& name, bool defaultValue = false); 73 bool GetPref(const std::wstring& name, bool defaultValue = false);
74 int64_t GetPref(const std::wstring& name, int64_t defaultValue = 0); 74 int64_t GetPref(const std::wstring& name, int64_t defaultValue = 0);
75 void CheckForUpdates(); 75 void CheckForUpdates(HWND callbackWindow);
76 std::wstring GetAppLocale(); 76 std::wstring GetAppLocale();
77 std::wstring GetDocumentationLink(); 77 std::wstring GetDocumentationLink();
78 bool TogglePluginEnabled(); 78 bool TogglePluginEnabled();
79 79
80 bool IsFirstRun(); 80 bool IsFirstRun();
81 }; 81 };
82 82
83 #endif // _ADBLOCK_PLUS_CLIENT_H_ 83 #endif // _ADBLOCK_PLUS_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld