GetConstructor now returns FunctionTemplate

This commit is contained in:
Cheng Zhao 2016-08-02 17:20:58 +09:00
Родитель 6e0cde5b24
Коммит 8f62e79243
4 изменённых файлов: 5 добавлений и 4 удалений

Просмотреть файл

@ -193,7 +193,7 @@ void Initialize(v8::Local<v8::Object> exports, v8::Local<v8::Value> unused,
Menu::SetConstructor(isolate, "Menu", base::Bind(&Menu::New));
mate::Dictionary dict(isolate, exports);
dict.Set("Menu", Menu::GetConstructor(isolate));
dict.Set("Menu", Menu::GetConstructor(isolate)->GetFunction());
#if defined(OS_MACOSX)
dict.SetMethod("setApplicationMenu", &Menu::SetApplicationMenu);
dict.SetMethod("sendActionToFirstResponder",

Просмотреть файл

@ -230,7 +230,7 @@ void Initialize(v8::Local<v8::Object> exports, v8::Local<v8::Value> unused,
Tray::SetConstructor(isolate, "Tray", base::Bind(&Tray::New));
mate::Dictionary dict(isolate, exports);
dict.Set("Tray", Tray::GetConstructor(isolate));
dict.Set("Tray", Tray::GetConstructor(isolate)->GetFunction());
}
} // namespace

Просмотреть файл

@ -871,7 +871,8 @@ void Initialize(v8::Local<v8::Object> exports, v8::Local<v8::Value> unused,
v8::Isolate* isolate = context->GetIsolate();
Window::SetConstructor(isolate, "BrowserWindow", base::Bind(&Window::New));
mate::Dictionary browser_window(isolate, Window::GetConstructor(isolate));
mate::Dictionary browser_window(
isolate, Window::GetConstructor(isolate)->GetFunction());
browser_window.SetMethod("fromId",
&mate::TrackableObject<Window>::FromWeakMapID);
browser_window.SetMethod("getAllWindows",

2
vendor/native_mate поставляемый

@ -1 +1 @@
Subproject commit 2d26eebca8d6e0e8fdfdf68197699ae78018fbda
Subproject commit 3a7a6efffb4b3cd68967466cb1cab337509e3b07