| OLD | NEW |
| 1 /** | 1 /** |
| 2 * This class contains all client functionality of the IE plugin | 2 * This class contains all client functionality of the IE plugin |
| 3 * | 3 * |
| 4 * Exception errors are tested by calls to ExceptionsTest from: Main ... | 4 * Exception errors are tested by calls to ExceptionsTest from: Main ... |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 #ifndef _PLUGIN_SETTINGS_H_ | 7 #ifndef _PLUGIN_SETTINGS_H_ |
| 8 #define _PLUGIN_SETTINGS_H_ | 8 #define _PLUGIN_SETTINGS_H_ |
| 9 | 9 |
| 10 | 10 |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 int GetWhiteListedDomainCount() const; | 115 int GetWhiteListedDomainCount() const; |
| 116 std::vector<std::wstring> GetWhiteListedDomainList(); | 116 std::vector<std::wstring> GetWhiteListedDomainList(); |
| 117 #endif //SUPPORT_WHITELIST | 117 #endif //SUPPORT_WHITELIST |
| 118 | 118 |
| 119 bool RefreshWhitelist(); | 119 bool RefreshWhitelist(); |
| 120 DWORD GetWindowsBuildNumber(); | 120 DWORD GetWindowsBuildNumber(); |
| 121 | 121 |
| 122 void SetSubscription(const std::wstring& url); | 122 void SetSubscription(const std::wstring& url); |
| 123 void SetDefaultSubscription(); | 123 void SetDefaultSubscription(); |
| 124 CString GetSubscription(); | 124 CString GetSubscription(); |
| 125 | |
| 126 bool GetStatusBarAsked(); | |
| 127 void SetStatusBarAsked(); | |
| 128 std::vector<SubscriptionDescription> m_subscriptions; | 125 std::vector<SubscriptionDescription> m_subscriptions; |
| 129 }; | 126 }; |
| 130 | 127 |
| 131 | 128 |
| 132 #endif // _PLUGIN_SETTINGS_H_ | 129 #endif // _PLUGIN_SETTINGS_H_ |
| OLD | NEW |