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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 typedef std::shared_ptr<JsEngine> JsEnginePtr; | 52 typedef std::shared_ptr<JsEngine> JsEnginePtr; |
53 | 53 |
54 /** | 54 /** |
55 * A factory to construct DefaultTimer. | 55 * A factory to construct DefaultTimer. |
56 */ | 56 */ |
57 TimerPtr CreateDefaultTimer(); | 57 TimerPtr CreateDefaultTimer(); |
58 | 58 |
59 /** | 59 /** |
60 * A factory to construct DefaultFileSystem. | 60 * A factory to construct DefaultFileSystem. |
61 */ | 61 */ |
62 FileSystemPtr CreateDefaultFileSystem(); | 62 FileSystemPtr CreateDefaultFileSystem(const Scheduler& scheduler); |
63 | 63 |
64 /** | 64 /** |
65 * A factory to construct DefaultWebRequest. | 65 * A factory to construct DefaultWebRequest. |
66 */ | 66 */ |
67 WebRequestPtr CreateDefaultWebRequest(const Scheduler& scheduler); | 67 WebRequestPtr CreateDefaultWebRequest(const Scheduler& scheduler); |
68 | 68 |
69 /** | 69 /** |
70 * A factory to construct LogSystem. | 70 * A factory to construct LogSystem. |
71 */ | 71 */ |
72 LogSystemPtr CreateDefaultLogSystem(); | 72 LogSystemPtr CreateDefaultLogSystem(); |
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
320 EventMap eventCallbacks; | 320 EventMap eventCallbacks; |
321 std::mutex eventCallbacksMutex; | 321 std::mutex eventCallbacksMutex; |
322 JsWeakValuesLists jsWeakValuesLists; | 322 JsWeakValuesLists jsWeakValuesLists; |
323 std::mutex jsWeakValuesListsMutex; | 323 std::mutex jsWeakValuesListsMutex; |
324 TimerPtr timer; | 324 TimerPtr timer; |
325 WebRequestPtr webRequest; | 325 WebRequestPtr webRequest; |
326 }; | 326 }; |
327 } | 327 } |
328 | 328 |
329 #endif | 329 #endif |
OLD | NEW |