| OLD | NEW |
| 1 /* | 1 /* |
| 2 * This file is part of Adblock Plus <http://adblockplus.org/>, | 2 * This file is part of Adblock Plus <http://adblockplus.org/>, |
| 3 * Copyright (C) 2006-2013 Eyeo GmbH | 3 * Copyright (C) 2006-2013 Eyeo GmbH |
| 4 * | 4 * |
| 5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
| 6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
| 7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
| 8 * | 8 * |
| 9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 std::vector<FilterPtr> GetListedFilters() const; | 78 std::vector<FilterPtr> GetListedFilters() const; |
| 79 std::vector<SubscriptionPtr> GetListedSubscriptions() const; | 79 std::vector<SubscriptionPtr> GetListedSubscriptions() const; |
| 80 std::vector<SubscriptionPtr> FetchAvailableSubscriptions() const; | 80 std::vector<SubscriptionPtr> FetchAvailableSubscriptions() const; |
| 81 FilterPtr Matches(const std::string& url, | 81 FilterPtr Matches(const std::string& url, |
| 82 const std::string& contentType, | 82 const std::string& contentType, |
| 83 const std::string& documentUrl) const; | 83 const std::string& documentUrl) const; |
| 84 std::vector<std::string> GetElementHidingSelectors(const std::string& domain
) const; | 84 std::vector<std::string> GetElementHidingSelectors(const std::string& domain
) const; |
| 85 JsValuePtr GetPref(const std::string& pref) const; | 85 JsValuePtr GetPref(const std::string& pref) const; |
| 86 void SetPref(const std::string& pref, JsValuePtr value); | 86 void SetPref(const std::string& pref, JsValuePtr value); |
| 87 void ForceUpdateCheck(UpdaterCallback callback = 0); | 87 void ForceUpdateCheck(UpdaterCallback callback = 0); |
| 88 std::string GetRequire(std::string requireName); |
| 88 | 89 |
| 89 private: | 90 private: |
| 90 JsEnginePtr jsEngine; | 91 JsEnginePtr jsEngine; |
| 91 bool initialized; | 92 bool initialized; |
| 92 bool firstRun; | 93 bool firstRun; |
| 93 int updateCheckId; | 94 int updateCheckId; |
| 94 | 95 |
| 95 void InitDone(JsValueList& params); | 96 void InitDone(JsValueList& params); |
| 96 void UpdateCheckDone(const std::string& eventName, UpdaterCallback callback,
JsValueList& params); | 97 void UpdateCheckDone(const std::string& eventName, UpdaterCallback callback,
JsValueList& params); |
| 97 }; | 98 }; |
| 98 } | 99 } |
| 99 | 100 |
| 100 #endif | 101 #endif |
| OLD | NEW |