aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Zinoviev <me@ch1p.io>2019-01-24 22:48:34 +0300
committerEvgeny Zinoviev <me@ch1p.io>2019-01-24 22:48:34 +0300
commit5e2cfb173241c104e607659ad802a0a15a055067 (patch)
tree2e6c84db5302848c819f7ae62ef436fa741ac0ab
parentb185113dd291ce5d094b958c4e3d0690f4bebb9e (diff)
update for node abi 68
-rw-r--r--index.mm10
1 files changed, 5 insertions, 5 deletions
diff --git a/index.mm b/index.mm
index 423af50..0ee829b 100644
--- a/index.mm
+++ b/index.mm
@@ -75,7 +75,7 @@ static void DelayAsyncAfter(uv_work_t *req,int status) {
Local<Function>::New(isolate, baton->callback)->Call(isolate->GetCurrentContext()->Global(), 1, argv);
baton->callback.Reset();
-
+
delete baton;
}
@@ -119,7 +119,7 @@ void AskForMediaAccess(const v8::FunctionCallbackInfo<Value>& args) {
String::NewFromUtf8(isolate, "invalid media type")));
}
- args.GetReturnValue().Set(Undefined(isolate));
+ args.GetReturnValue().Set(Undefined(isolate));
}
void GetMediaAccessStatus(const v8::FunctionCallbackInfo<Value>& args) {
@@ -134,7 +134,7 @@ void GetMediaAccessStatus(const v8::FunctionCallbackInfo<Value>& args) {
String::Utf8Value mediaTypeValue(args[0]);
std::string mediaType(*mediaTypeValue);
-
+
if (auto type = ParseMediaType(mediaType)) {
if (isMojave()) {
args.GetReturnValue().Set(String::NewFromUtf8(isolate, ConvertAuthorizationStatus(
@@ -146,10 +146,10 @@ void GetMediaAccessStatus(const v8::FunctionCallbackInfo<Value>& args) {
} else {
isolate->ThrowException(Exception::TypeError(
String::NewFromUtf8(isolate, "invalid media type")));
- }
+ }
}
-void Init(Handle<Object> exports) {
+void Init(Local<Object> exports) {
NODE_SET_METHOD(exports, "getMediaAccessStatus", GetMediaAccessStatus);
NODE_SET_METHOD(exports, "askForMediaAccess", AskForMediaAccess);
}