OLD | NEW |
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-2017 eyeo GmbH | 3 * Copyright (C) 2006-2017 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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
270 | 270 |
271 /** | 271 /** |
272 * Sets the `FileSystem` implementation used for all file I/O. | 272 * Sets the `FileSystem` implementation used for all file I/O. |
273 * Setting this is optional, the engine will use a `DefaultFileSystem` | 273 * Setting this is optional, the engine will use a `DefaultFileSystem` |
274 * instance by default, which might be sufficient. | 274 * instance by default, which might be sufficient. |
275 * @param The `FileSystem` instance to use. | 275 * @param The `FileSystem` instance to use. |
276 */ | 276 */ |
277 void SetFileSystem(const FileSystemPtr& val); | 277 void SetFileSystem(const FileSystemPtr& val); |
278 | 278 |
279 /** | 279 /** |
280 /** | |
281 * Sets the `WebRequest` implementation used for XMLHttpRequests. | 280 * Sets the `WebRequest` implementation used for XMLHttpRequests. |
282 * Setting this is optional, the engine will use a `DefaultWebRequest` | 281 * Setting this is optional, the engine will use a `DefaultWebRequest` |
283 * instance by default, which might be sufficient. | 282 * instance by default, which might be sufficient. |
284 * @param The `WebRequest` instance to use. | 283 * @param The `WebRequest` instance to use. |
285 */ | 284 */ |
286 void SetWebRequest(const WebRequestSharedPtr& val); | 285 void SetWebRequest(const WebRequestSharedPtr& val); |
287 | 286 |
288 /** | 287 /** |
289 * @see `SetLogSystem()`. | 288 * @see `SetLogSystem()`. |
290 */ | 289 */ |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
332 std::mutex eventCallbacksMutex; | 331 std::mutex eventCallbacksMutex; |
333 JsWeakValuesLists jsWeakValuesLists; | 332 JsWeakValuesLists jsWeakValuesLists; |
334 std::mutex jsWeakValuesListsMutex; | 333 std::mutex jsWeakValuesListsMutex; |
335 TimerPtr timer; | 334 TimerPtr timer; |
336 WebRequestPtr webRequest; | 335 WebRequestPtr webRequest; |
337 WebRequestSharedPtr webRequestLegacy; | 336 WebRequestSharedPtr webRequestLegacy; |
338 }; | 337 }; |
339 } | 338 } |
340 | 339 |
341 #endif | 340 #endif |
OLD | NEW |