| 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-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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 58 | 58 |
| 59 /** | 59 /** |
| 60 * Scope based isolate manager. Creates a new isolate instance on | 60 * Scope based isolate manager. Creates a new isolate instance on |
| 61 * constructing and disposes it on destructing. | 61 * constructing and disposes it on destructing. |
| 62 */ | 62 */ |
| 63 class ScopedV8Isolate | 63 class ScopedV8Isolate |
| 64 { | 64 { |
| 65 public: | 65 public: |
| 66 ScopedV8Isolate(); | 66 ScopedV8Isolate(); |
| 67 ~ScopedV8Isolate(); | 67 ~ScopedV8Isolate(); |
| 68 v8::Isolate* Get() const | 68 v8::Isolate* Get() |
|
sergei
2017/04/11 10:36:50
I would like to not make this one and one below co
hub
2017/04/11 11:32:35
same for JsEngine::GetIsolate() then?
| |
| 69 { | 69 { |
| 70 return isolate; | 70 return isolate; |
| 71 } | 71 } |
| 72 private: | 72 private: |
| 73 ScopedV8Isolate(const ScopedV8Isolate&); | 73 ScopedV8Isolate(const ScopedV8Isolate&); |
| 74 ScopedV8Isolate& operator=(const ScopedV8Isolate&); | 74 ScopedV8Isolate& operator=(const ScopedV8Isolate&); |
| 75 | 75 |
| 76 v8::Isolate* isolate; | 76 v8::Isolate* isolate; |
| 77 }; | 77 }; |
| 78 | 78 |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 275 /** | 275 /** |
| 276 * Sets a global property that can be accessed by all the scripts. | 276 * Sets a global property that can be accessed by all the scripts. |
| 277 * @param name Name of the property to set. | 277 * @param name Name of the property to set. |
| 278 * @param value Value of the property to set. | 278 * @param value Value of the property to set. |
| 279 */ | 279 */ |
| 280 void SetGlobalProperty(const std::string& name, AdblockPlus::JsValuePtr valu e); | 280 void SetGlobalProperty(const std::string& name, AdblockPlus::JsValuePtr valu e); |
| 281 | 281 |
| 282 /** | 282 /** |
| 283 * Returns a pointer to associated v8::Isolate. | 283 * Returns a pointer to associated v8::Isolate. |
| 284 */ | 284 */ |
| 285 v8::Isolate* GetIsolate() const | 285 v8::Isolate* GetIsolate() |
| 286 { | 286 { |
| 287 return isolate->Get(); | 287 return isolate->Get(); |
| 288 } | 288 } |
| 289 | 289 |
| 290 private: | 290 private: |
| 291 struct TimerTask | 291 struct TimerTask |
| 292 { | 292 { |
| 293 ~TimerTask(); | 293 ~TimerTask(); |
| 294 std::vector<std::unique_ptr<v8::Persistent<v8::Value>>> arguments; | 294 std::vector<std::unique_ptr<v8::Persistent<v8::Value>>> arguments; |
| 295 }; | 295 }; |
| (...skipping 15 matching lines...) Expand all Loading... | |
| 311 EventMap eventCallbacks; | 311 EventMap eventCallbacks; |
| 312 std::mutex eventCallbacksMutex; | 312 std::mutex eventCallbacksMutex; |
| 313 mutable std::mutex isConnectionAllowedMutex; | 313 mutable std::mutex isConnectionAllowedMutex; |
| 314 IsConnectionAllowedCallback isConnectionAllowed; | 314 IsConnectionAllowedCallback isConnectionAllowed; |
| 315 TimerTasks timerTasks; | 315 TimerTasks timerTasks; |
| 316 TimerPtr timer; | 316 TimerPtr timer; |
| 317 }; | 317 }; |
| 318 } | 318 } |
| 319 | 319 |
| 320 #endif | 320 #endif |
| LEFT | RIGHT |