Left: | ||
Right: |
LEFT | RIGHT |
---|---|
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-2016 Eyeo GmbH | 3 * Copyright (C) 2006-2016 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
88 typedef std::function<void(JsValueList& params)> EventCallback; | 88 typedef std::function<void(JsValueList& params)> EventCallback; |
89 | 89 |
90 /** | 90 /** |
91 * Maps events to callback functions. | 91 * Maps events to callback functions. |
92 */ | 92 */ |
93 typedef std::map<std::string, EventCallback> EventMap; | 93 typedef std::map<std::string, EventCallback> EventMap; |
94 | 94 |
95 /** | 95 /** |
96 * Creates a new JavaScript engine instance. | 96 * Creates a new JavaScript engine instance. |
97 * @param appInfo Information about the app. | 97 * @param appInfo Information about the app. |
98 * @param isolate v8::Isolate wrapper. This parameter should be considered | |
99 * as a temporary hack for tests, it will go away. Issue #3593. | |
98 * @return New `JsEngine` instance. | 100 * @return New `JsEngine` instance. |
99 */ | 101 */ |
100 static JsEnginePtr New(const AppInfo& appInfo = AppInfo(), const ScopedV8Iso latePtr& isolate = ScopedV8IsolatePtr()); | 102 static JsEnginePtr New(const AppInfo& appInfo = AppInfo(), const ScopedV8Iso latePtr& isolate = ScopedV8IsolatePtr(new ScopedV8Isolate())); |
101 | 103 |
102 /** | 104 /** |
103 * Registers the callback function for an event. | 105 * Registers the callback function for an event. |
104 * @param eventName Event name. Note that this can be any string - it's a | 106 * @param eventName Event name. Note that this can be any string - it's a |
105 * general purpose event handling mechanism. | 107 * general purpose event handling mechanism. |
106 * @param callback Event callback function. | 108 * @param callback Event callback function. |
107 */ | 109 */ |
108 void SetEventCallback(const std::string& eventName, EventCallback callback); | 110 void SetEventCallback(const std::string& eventName, EventCallback callback); |
109 | 111 |
110 /** | 112 /** |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
246 v8::Isolate* GetIsolate() | 248 v8::Isolate* GetIsolate() |
247 { | 249 { |
248 return isolate->Get(); | 250 return isolate->Get(); |
249 } | 251 } |
250 | 252 |
251 private: | 253 private: |
252 explicit JsEngine(const ScopedV8IsolatePtr& isolate); | 254 explicit JsEngine(const ScopedV8IsolatePtr& isolate); |
253 | 255 |
254 /// Isolate must be disposed only after disposing of all objects which are | 256 /// Isolate must be disposed only after disposing of all objects which are |
255 /// using it. | 257 /// using it. |
256 ScopedV8IsolatePtr isolate; | 258 ScopedV8IsolatePtr isolate; |
Eric
2016/01/27 17:21:02
You should be able to declare this member 'const'.
sergei
2016/01/28 14:02:50
I don't think that it would be better here. I woul
Eric
2016/01/28 16:42:41
I've said before that this member should _not_ be
sergei
2016/01/29 11:31:14
I have just explained my point of view regarding u
Eric
2016/02/09 14:59:14
I am seriously beginning to think you don't actual
| |
257 | 259 |
258 FileSystemPtr fileSystem; | 260 FileSystemPtr fileSystem; |
259 WebRequestPtr webRequest; | 261 WebRequestPtr webRequest; |
260 LogSystemPtr logSystem; | 262 LogSystemPtr logSystem; |
261 std::unique_ptr<v8::Persistent<v8::Context>> context; | 263 std::unique_ptr<v8::Persistent<v8::Context>> context; |
262 EventMap eventCallbacks; | 264 EventMap eventCallbacks; |
263 JsValuePtr globalJsObject; | 265 JsValuePtr globalJsObject; |
264 }; | 266 }; |
265 } | 267 } |
266 | 268 |
267 #endif | 269 #endif |
LEFT | RIGHT |