Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: include/AdblockPlus/JsValue.h

Issue 5598762307158016: Issue 1550 - Get rid of V8ValueHolder.h (Closed)
Patch Set: update Created June 11, 2015, 1:02 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « include/AdblockPlus/JsEngine.h ('k') | include/AdblockPlus/Notification.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/AdblockPlus/JsValue.h
diff --git a/include/AdblockPlus/JsValue.h b/include/AdblockPlus/JsValue.h
index 44535f92711382aa905576c59a283a82e3e4c490..6b3f97c504d7bc11e4c0d186d7e44573ae1af507 100644
--- a/include/AdblockPlus/JsValue.h
+++ b/include/AdblockPlus/JsValue.h
@@ -22,13 +22,13 @@
#include <string>
#include <vector>
#include "tr1_memory.h"
-#include "V8ValueHolder.h"
namespace v8
{
class Value;
template<class T> class Handle;
template<class T> class Local;
+ template<class T> class Persistent;
}
namespace AdblockPlus
@@ -56,6 +56,7 @@ namespace AdblockPlus
{
friend class JsEngine;
public:
+ JsValue(JsValue&& src);
virtual ~JsValue();
bool IsUndefined() const;
@@ -125,12 +126,11 @@ namespace AdblockPlus
v8::Local<v8::Value> UnwrapValue() const;
protected:
- JsValue(JsValuePtr value);
JsEnginePtr jsEngine;
private:
JsValue(JsEnginePtr jsEngine, v8::Handle<v8::Value> value);
void SetProperty(const std::string& name, v8::Handle<v8::Value> val);
- V8ValueHolder<v8::Value> value;
+ std::unique_ptr<v8::Persistent<v8::Value>> value;
};
}
« no previous file with comments | « include/AdblockPlus/JsEngine.h ('k') | include/AdblockPlus/Notification.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld