LEFT | RIGHT |
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 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 { | 274 { |
275 jsEngine->RemoveEventCallback(eventName); | 275 jsEngine->RemoveEventCallback(eventName); |
276 | 276 |
277 std::string error(params.size() >= 1 && !params[0]->IsNull() ? params[0]->AsSt
ring() : ""); | 277 std::string error(params.size() >= 1 && !params[0]->IsNull() ? params[0]->AsSt
ring() : ""); |
278 callback(error); | 278 callback(error); |
279 } | 279 } |
280 | 280 |
281 void FilterEngine::SetFilterChangeCallback(FilterEngine::FilterChangeCallback ca
llback) | 281 void FilterEngine::SetFilterChangeCallback(FilterEngine::FilterChangeCallback ca
llback) |
282 { | 282 { |
283 jsEngine->SetEventCallback("filterChange", std::tr1::bind(&FilterEngine::Filte
rChanged, | 283 jsEngine->SetEventCallback("filterChange", std::tr1::bind(&FilterEngine::Filte
rChanged, |
284 this, "filterChange", callback, std::tr1::placeholders::_1)); | 284 this, callback, std::tr1::placeholders::_1)); |
285 } | 285 } |
286 | 286 |
287 void FilterEngine::RemoveFilterChangeCallback() | 287 void FilterEngine::RemoveFilterChangeCallback() |
288 { | 288 { |
289 jsEngine->RemoveEventCallback("filterChange"); | 289 jsEngine->RemoveEventCallback("filterChange"); |
290 } | 290 } |
291 | 291 |
292 void FilterEngine::FilterChanged(const std::string& eventName, FilterEngine::Fil
terChangeCallback callback, JsValueList& params) | 292 void FilterEngine::FilterChanged(FilterEngine::FilterChangeCallback callback, Js
ValueList& params) |
293 { | 293 { |
294 std::string action(params.size() >= 1 && !params[0]->IsNull() ? params[0]->AsS
tring() : ""); | 294 std::string action(params.size() >= 1 && !params[0]->IsNull() ? params[0]->AsS
tring() : ""); |
295 std::string url(params.size() >= 2 && !params[1]->IsNull() ? params[1]->AsStri
ng() : ""); | 295 JsValuePtr item(params.size() >= 2 ? params[1] : jsEngine->NewValue(false)); |
296 callback(action, url); | 296 callback(action, item); |
297 } | 297 } |
LEFT | RIGHT |