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

Unified Diff: src/JsError.h

Issue 29735555: Issue 6526 - replace deprecated v8::Handle by v8::Local (Closed) Base URL: https://github.com/adblockplus/libadblockplus@ef3f884a2efa47ace996398da09afe3d0ce647f0
Patch Set: Created March 28, 2018, 8:06 a.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 | « src/JsEngine.cpp ('k') | src/JsError.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/JsError.h
diff --git a/src/JsError.h b/src/JsError.h
index be45d0929ca42ba52873912fb7b8255d965d5310..3955711953443b014b73e87dfa9c93a61aa2624d 100644
--- a/src/JsError.h
+++ b/src/JsError.h
@@ -27,10 +27,10 @@ namespace AdblockPlus
class JsError : public std::runtime_error
{
public:
- JsError(const v8::Handle<v8::Value>& exception,
- const v8::Handle<v8::Message>& message);
- static std::string ExceptionToString(const v8::Handle<v8::Value>& exception,
- const v8::Handle<v8::Message>& message);
+ JsError(const v8::Local<v8::Value>& exception,
+ const v8::Local<v8::Message>& message);
+ static std::string ExceptionToString(const v8::Local<v8::Value>& exception,
+ const v8::Local<v8::Message>& message);
};
}
« no previous file with comments | « src/JsEngine.cpp ('k') | src/JsError.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld