|
@@ -6,18 +6,14 @@
|
|
|
#include <utility>
|
|
|
#include <vector>
|
|
|
|
|
|
-#include "native_mate/dictionary.h"
|
|
|
-#include "shell/browser/api/atom_api_browser_window.h"
|
|
|
-#include "shell/browser/native_window.h"
|
|
|
+#include "gin/dictionary.h"
|
|
|
#include "shell/browser/ui/certificate_trust.h"
|
|
|
#include "shell/browser/ui/file_dialog.h"
|
|
|
#include "shell/browser/ui/message_box.h"
|
|
|
-#include "shell/common/native_mate_converters/callback.h"
|
|
|
-#include "shell/common/native_mate_converters/file_dialog_converter.h"
|
|
|
-#include "shell/common/native_mate_converters/file_path_converter.h"
|
|
|
-#include "shell/common/native_mate_converters/image_converter.h"
|
|
|
-#include "shell/common/native_mate_converters/message_box_converter.h"
|
|
|
-#include "shell/common/native_mate_converters/net_converter.h"
|
|
|
+#include "shell/common/api/gin_utils.h"
|
|
|
+#include "shell/common/gin_converters/file_dialog_converter_gin_adapter.h"
|
|
|
+#include "shell/common/gin_converters/message_box_converter.h"
|
|
|
+#include "shell/common/gin_converters/net_converter_gin_adapter.h"
|
|
|
#include "shell/common/node_includes.h"
|
|
|
#include "shell/common/promise_util.h"
|
|
|
|
|
@@ -30,17 +26,18 @@ int ShowMessageBoxSync(const electron::MessageBoxSettings& settings) {
|
|
|
void ResolvePromiseObject(electron::util::Promise promise,
|
|
|
int result,
|
|
|
bool checkbox_checked) {
|
|
|
- mate::Dictionary dict = mate::Dictionary::CreateEmpty(promise.isolate());
|
|
|
+ v8::Isolate* isolate = promise.isolate();
|
|
|
+ gin::Dictionary dict = gin::Dictionary::CreateEmpty(isolate);
|
|
|
|
|
|
dict.Set("response", result);
|
|
|
dict.Set("checkboxChecked", checkbox_checked);
|
|
|
|
|
|
- promise.Resolve(dict.GetHandle());
|
|
|
+ promise.Resolve(gin::ConvertToV8(isolate, dict));
|
|
|
}
|
|
|
|
|
|
v8::Local<v8::Promise> ShowMessageBox(
|
|
|
const electron::MessageBoxSettings& settings,
|
|
|
- mate::Arguments* args) {
|
|
|
+ gin::Arguments* args) {
|
|
|
v8::Isolate* isolate = args->isolate();
|
|
|
electron::util::Promise promise(isolate);
|
|
|
v8::Local<v8::Promise> handle = promise.GetHandle();
|
|
@@ -52,7 +49,7 @@ v8::Local<v8::Promise> ShowMessageBox(
|
|
|
}
|
|
|
|
|
|
void ShowOpenDialogSync(const file_dialog::DialogSettings& settings,
|
|
|
- mate::Arguments* args) {
|
|
|
+ gin::Arguments* args) {
|
|
|
std::vector<base::FilePath> paths;
|
|
|
if (file_dialog::ShowOpenDialogSync(settings, &paths))
|
|
|
args->Return(paths);
|
|
@@ -60,7 +57,7 @@ void ShowOpenDialogSync(const file_dialog::DialogSettings& settings,
|
|
|
|
|
|
v8::Local<v8::Promise> ShowOpenDialog(
|
|
|
const file_dialog::DialogSettings& settings,
|
|
|
- mate::Arguments* args) {
|
|
|
+ gin::Arguments* args) {
|
|
|
electron::util::Promise promise(args->isolate());
|
|
|
v8::Local<v8::Promise> handle = promise.GetHandle();
|
|
|
file_dialog::ShowOpenDialog(settings, std::move(promise));
|
|
@@ -68,7 +65,7 @@ v8::Local<v8::Promise> ShowOpenDialog(
|
|
|
}
|
|
|
|
|
|
void ShowSaveDialogSync(const file_dialog::DialogSettings& settings,
|
|
|
- mate::Arguments* args) {
|
|
|
+ gin::Arguments* args) {
|
|
|
base::FilePath path;
|
|
|
if (file_dialog::ShowSaveDialogSync(settings, &path))
|
|
|
args->Return(path);
|
|
@@ -76,7 +73,7 @@ void ShowSaveDialogSync(const file_dialog::DialogSettings& settings,
|
|
|
|
|
|
v8::Local<v8::Promise> ShowSaveDialog(
|
|
|
const file_dialog::DialogSettings& settings,
|
|
|
- mate::Arguments* args) {
|
|
|
+ gin::Arguments* args) {
|
|
|
electron::util::Promise promise(args->isolate());
|
|
|
v8::Local<v8::Promise> handle = promise.GetHandle();
|
|
|
|
|
@@ -88,17 +85,34 @@ void Initialize(v8::Local<v8::Object> exports,
|
|
|
v8::Local<v8::Value> unused,
|
|
|
v8::Local<v8::Context> context,
|
|
|
void* priv) {
|
|
|
- mate::Dictionary dict(context->GetIsolate(), exports);
|
|
|
- dict.SetMethod("showMessageBoxSync", &ShowMessageBoxSync);
|
|
|
- dict.SetMethod("showMessageBox", &ShowMessageBox);
|
|
|
- dict.SetMethod("showErrorBox", &electron::ShowErrorBox);
|
|
|
- dict.SetMethod("showOpenDialogSync", &ShowOpenDialogSync);
|
|
|
- dict.SetMethod("showOpenDialog", &ShowOpenDialog);
|
|
|
- dict.SetMethod("showSaveDialogSync", &ShowSaveDialogSync);
|
|
|
- dict.SetMethod("showSaveDialog", &ShowSaveDialog);
|
|
|
+ v8::Isolate* isolate = context->GetIsolate();
|
|
|
+ gin::Dictionary dict(isolate, exports);
|
|
|
+ dict.Set("showMessageBoxSync",
|
|
|
+ gin::ConvertCallbackToV8Leaked(
|
|
|
+ isolate, base::BindRepeating(&ShowMessageBoxSync)));
|
|
|
+ dict.Set("showMessageBox",
|
|
|
+ gin::ConvertCallbackToV8Leaked(
|
|
|
+ isolate, base::BindRepeating(&ShowMessageBox)));
|
|
|
+ dict.Set("showErrorBox",
|
|
|
+ gin::ConvertCallbackToV8Leaked(
|
|
|
+ isolate, base::BindRepeating(&electron::ShowErrorBox)));
|
|
|
+ dict.Set("showOpenDialogSync",
|
|
|
+ gin::ConvertCallbackToV8Leaked(
|
|
|
+ isolate, base::BindRepeating(&ShowOpenDialogSync)));
|
|
|
+ dict.Set("showOpenDialog",
|
|
|
+ gin::ConvertCallbackToV8Leaked(
|
|
|
+ isolate, base::BindRepeating(&ShowOpenDialog)));
|
|
|
+ dict.Set("showSaveDialogSync",
|
|
|
+ gin::ConvertCallbackToV8Leaked(
|
|
|
+ isolate, base::BindRepeating(&ShowSaveDialogSync)));
|
|
|
+ dict.Set("showSaveDialog",
|
|
|
+ gin::ConvertCallbackToV8Leaked(
|
|
|
+ isolate, base::BindRepeating(&ShowSaveDialog)));
|
|
|
#if defined(OS_MACOSX) || defined(OS_WIN)
|
|
|
- dict.SetMethod("showCertificateTrustDialog",
|
|
|
- &certificate_trust::ShowCertificateTrust);
|
|
|
+ dict.Set("showCertificateTrustDialog",
|
|
|
+ gin::ConvertCallbackToV8Leaked(
|
|
|
+ isolate,
|
|
|
+ base::BindRepeating(&certificate_trust::ShowCertificateTrust)));
|
|
|
#endif
|
|
|
}
|
|
|
|