chore: remove native_mate (Part 4) (#20146)

* avoid patching gin::Dictionary by using our wrapper

* remove SetHidden from mate::Dictionary
This commit is contained in:
Cheng Zhao 2019-09-09 00:10:18 +09:00 коммит произвёл GitHub
Родитель d395799917
Коммит 49bd74ff0e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
24 изменённых файлов: 190 добавлений и 162 удалений

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

@ -55,19 +55,6 @@ class Dictionary {
return ConvertFromV8(isolate_, val, out); return ConvertFromV8(isolate_, val, out);
} }
template <typename T>
bool GetHidden(base::StringPiece key, T* out) const {
v8::Local<v8::Context> context = isolate_->GetCurrentContext();
v8::Local<v8::Private> privateKey =
v8::Private::ForApi(isolate_, StringToV8(isolate_, key));
v8::Local<v8::Value> value;
v8::Maybe<bool> result = GetHandle()->HasPrivate(context, privateKey);
if (internal::IsTrue(result) &&
GetHandle()->GetPrivate(context, privateKey).ToLocal(&value))
return ConvertFromV8(isolate_, value, out);
return false;
}
template <typename T> template <typename T>
bool Set(base::StringPiece key, const T& val) { bool Set(base::StringPiece key, const T& val) {
v8::Local<v8::Value> v8_value; v8::Local<v8::Value> v8_value;
@ -78,19 +65,6 @@ class Dictionary {
return !result.IsNothing() && result.FromJust(); return !result.IsNothing() && result.FromJust();
} }
template <typename T>
bool SetHidden(base::StringPiece key, T val) {
v8::Local<v8::Value> v8_value;
if (!TryConvertToV8(isolate_, val, &v8_value))
return false;
v8::Local<v8::Context> context = isolate_->GetCurrentContext();
v8::Local<v8::Private> privateKey =
v8::Private::ForApi(isolate_, StringToV8(isolate_, key));
v8::Maybe<bool> result =
GetHandle()->SetPrivate(context, privateKey, v8_value);
return !result.IsNothing() && result.FromJust();
}
template <typename T> template <typename T>
bool SetReadOnly(base::StringPiece key, T val) { bool SetReadOnly(base::StringPiece key, T val) {
v8::Local<v8::Value> v8_value; v8::Local<v8::Value> v8_value;

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

@ -21,7 +21,7 @@ template <typename T, typename Enable = void>
struct CallbackTraits { struct CallbackTraits {
static v8::Local<v8::FunctionTemplate> CreateTemplate(v8::Isolate* isolate, static v8::Local<v8::FunctionTemplate> CreateTemplate(v8::Isolate* isolate,
T callback) { T callback) {
return CreateFunctionTemplate(isolate, base::Bind(callback)); return mate::CreateFunctionTemplate(isolate, base::Bind(callback));
} }
}; };
@ -31,7 +31,7 @@ struct CallbackTraits<base::Callback<T>> {
static v8::Local<v8::FunctionTemplate> CreateTemplate( static v8::Local<v8::FunctionTemplate> CreateTemplate(
v8::Isolate* isolate, v8::Isolate* isolate,
const base::Callback<T>& callback) { const base::Callback<T>& callback) {
return CreateFunctionTemplate(isolate, callback); return mate::CreateFunctionTemplate(isolate, callback);
} }
}; };
@ -46,7 +46,7 @@ struct CallbackTraits<
static v8::Local<v8::FunctionTemplate> CreateTemplate(v8::Isolate* isolate, static v8::Local<v8::FunctionTemplate> CreateTemplate(v8::Isolate* isolate,
T callback) { T callback) {
int flags = HolderIsFirstArgument; int flags = HolderIsFirstArgument;
return CreateFunctionTemplate(isolate, base::Bind(callback), flags); return mate::CreateFunctionTemplate(isolate, base::Bind(callback), flags);
} }
}; };

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

@ -17,7 +17,6 @@ web_contents.patch
webview_cross_drag.patch webview_cross_drag.patch
disable_user_gesture_requirement_for_beforeunload_dialogs.patch disable_user_gesture_requirement_for_beforeunload_dialogs.patch
gin_enable_disable_v8_platform.patch gin_enable_disable_v8_platform.patch
gin_dictionary_default_constructor.patch
blink-worker-enable-csp-in-file-scheme.patch blink-worker-enable-csp-in-file-scheme.patch
disable-redraw-lock.patch disable-redraw-lock.patch
v8_context_snapshot_generator.patch v8_context_snapshot_generator.patch

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

@ -1,37 +0,0 @@
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Cheng Zhao <zcbenz@gmail.com>
Date: Thu, 4 Oct 2018 14:57:02 -0700
Subject: gin_dictionary_default_constructor.patch
Add default constructor for gin::Dictionary.
This is required for automatically converting arguments for functions that
take gin::Dictionary as parameter.
diff --git a/gin/dictionary.cc b/gin/dictionary.cc
index 95e00072700c..7643347890a5 100644
--- a/gin/dictionary.cc
+++ b/gin/dictionary.cc
@@ -6,6 +6,10 @@
namespace gin {
+Dictionary::Dictionary()
+ : isolate_(nullptr) {
+}
+
Dictionary::Dictionary(v8::Isolate* isolate)
: isolate_(isolate) {
}
diff --git a/gin/dictionary.h b/gin/dictionary.h
index 2645d328b4c1..43b227dd7e48 100644
--- a/gin/dictionary.h
+++ b/gin/dictionary.h
@@ -24,6 +24,7 @@ namespace gin {
//
class GIN_EXPORT Dictionary {
public:
+ Dictionary();
explicit Dictionary(v8::Isolate* isolate);
Dictionary(v8::Isolate* isolate, v8::Local<v8::Object> object);
Dictionary(const Dictionary& other);

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

@ -43,6 +43,7 @@
#include "shell/browser/relauncher.h" #include "shell/browser/relauncher.h"
#include "shell/common/application_info.h" #include "shell/common/application_info.h"
#include "shell/common/atom_command_line.h" #include "shell/common/atom_command_line.h"
#include "shell/common/gin_helper/dictionary.h"
#include "shell/common/native_mate_converters/callback_converter_deprecated.h" #include "shell/common/native_mate_converters/callback_converter_deprecated.h"
#include "shell/common/native_mate_converters/file_path_converter.h" #include "shell/common/native_mate_converters/file_path_converter.h"
#include "shell/common/native_mate_converters/gurl_converter.h" #include "shell/common/native_mate_converters/gurl_converter.h"
@ -1207,8 +1208,11 @@ std::vector<mate::Dictionary> App::GetAppMetrics(v8::Isolate* isolate) {
mate::Dictionary pid_dict = mate::Dictionary::CreateEmpty(isolate); mate::Dictionary pid_dict = mate::Dictionary::CreateEmpty(isolate);
mate::Dictionary cpu_dict = mate::Dictionary::CreateEmpty(isolate); mate::Dictionary cpu_dict = mate::Dictionary::CreateEmpty(isolate);
pid_dict.SetHidden("simple", true); // TODO(zcbenz): Just call SetHidden when this file is converted to gin.
cpu_dict.SetHidden("simple", true); gin_helper::Dictionary(isolate, pid_dict.GetHandle())
.SetHidden("simple", true);
gin_helper::Dictionary(isolate, cpu_dict.GetHandle())
.SetHidden("simple", true);
cpu_dict.Set( cpu_dict.Set(
"percentCPUUsage", "percentCPUUsage",
@ -1236,7 +1240,9 @@ std::vector<mate::Dictionary> App::GetAppMetrics(v8::Isolate* isolate) {
auto memory_info = process_metric.second->GetMemoryInfo(); auto memory_info = process_metric.second->GetMemoryInfo();
mate::Dictionary memory_dict = mate::Dictionary::CreateEmpty(isolate); mate::Dictionary memory_dict = mate::Dictionary::CreateEmpty(isolate);
memory_dict.SetHidden("simple", true); // TODO(zcbenz): Just call SetHidden when this file is converted to gin.
gin_helper::Dictionary(isolate, memory_dict.GetHandle())
.SetHidden("simple", true);
memory_dict.Set("workingSetSize", memory_dict.Set("workingSetSize",
static_cast<double>(memory_info.working_set_size >> 10)); static_cast<double>(memory_info.working_set_size >> 10));
memory_dict.Set( memory_dict.Set(

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

@ -25,11 +25,12 @@ int ShowMessageBoxSync(const electron::MessageBoxSettings& settings) {
return electron::ShowMessageBoxSync(settings); return electron::ShowMessageBoxSync(settings);
} }
void ResolvePromiseObject(electron::util::Promise<gin::Dictionary> promise, void ResolvePromiseObject(
int result, electron::util::Promise<gin_helper::Dictionary> promise,
bool checkbox_checked) { int result,
bool checkbox_checked) {
v8::Isolate* isolate = promise.isolate(); v8::Isolate* isolate = promise.isolate();
gin::Dictionary dict = gin::Dictionary::CreateEmpty(isolate); gin_helper::Dictionary dict = gin::Dictionary::CreateEmpty(isolate);
dict.Set("response", result); dict.Set("response", result);
dict.Set("checkboxChecked", checkbox_checked); dict.Set("checkboxChecked", checkbox_checked);
@ -41,7 +42,7 @@ v8::Local<v8::Promise> ShowMessageBox(
const electron::MessageBoxSettings& settings, const electron::MessageBoxSettings& settings,
gin::Arguments* args) { gin::Arguments* args) {
v8::Isolate* isolate = args->isolate(); v8::Isolate* isolate = args->isolate();
electron::util::Promise<gin::Dictionary> promise(isolate); electron::util::Promise<gin_helper::Dictionary> promise(isolate);
v8::Local<v8::Promise> handle = promise.GetHandle(); v8::Local<v8::Promise> handle = promise.GetHandle();
electron::ShowMessageBox( electron::ShowMessageBox(
@ -60,7 +61,7 @@ void ShowOpenDialogSync(const file_dialog::DialogSettings& settings,
v8::Local<v8::Promise> ShowOpenDialog( v8::Local<v8::Promise> ShowOpenDialog(
const file_dialog::DialogSettings& settings, const file_dialog::DialogSettings& settings,
gin::Arguments* args) { gin::Arguments* args) {
electron::util::Promise<gin::Dictionary> promise(args->isolate()); electron::util::Promise<gin_helper::Dictionary> promise(args->isolate());
v8::Local<v8::Promise> handle = promise.GetHandle(); v8::Local<v8::Promise> handle = promise.GetHandle();
file_dialog::ShowOpenDialog(settings, std::move(promise)); file_dialog::ShowOpenDialog(settings, std::move(promise));
return handle; return handle;
@ -76,7 +77,7 @@ void ShowSaveDialogSync(const file_dialog::DialogSettings& settings,
v8::Local<v8::Promise> ShowSaveDialog( v8::Local<v8::Promise> ShowSaveDialog(
const file_dialog::DialogSettings& settings, const file_dialog::DialogSettings& settings,
gin::Arguments* args) { gin::Arguments* args) {
electron::util::Promise<gin::Dictionary> promise(args->isolate()); electron::util::Promise<gin_helper::Dictionary> promise(args->isolate());
v8::Local<v8::Promise> handle = promise.GetHandle(); v8::Local<v8::Promise> handle = promise.GetHandle();
file_dialog::ShowSaveDialog(settings, std::move(promise)); file_dialog::ShowSaveDialog(settings, std::move(promise));

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

@ -9,6 +9,7 @@
#include <vector> #include <vector>
#include "native_mate/dictionary.h" #include "native_mate/dictionary.h"
#include "shell/common/gin_helper/dictionary.h"
#include "shell/common/node_includes.h" #include "shell/common/node_includes.h"
namespace mate { namespace mate {
@ -18,7 +19,8 @@ struct Converter<in_app_purchase::Payment> {
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate, static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
const in_app_purchase::Payment& payment) { const in_app_purchase::Payment& payment) {
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate); mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate);
dict.SetHidden("simple", true); // TODO(zcbenz): Just call SetHidden when this file is converted to gin.
gin_helper::Dictionary(isolate, dict.GetHandle()).SetHidden("simple", true);
dict.Set("productIdentifier", payment.productIdentifier); dict.Set("productIdentifier", payment.productIdentifier);
dict.Set("quantity", payment.quantity); dict.Set("quantity", payment.quantity);
return dict.GetHandle(); return dict.GetHandle();
@ -30,7 +32,8 @@ struct Converter<in_app_purchase::Transaction> {
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate, static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
const in_app_purchase::Transaction& val) { const in_app_purchase::Transaction& val) {
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate); mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate);
dict.SetHidden("simple", true); // TODO(zcbenz): Just call SetHidden when this file is converted to gin.
gin_helper::Dictionary(isolate, dict.GetHandle()).SetHidden("simple", true);
dict.Set("transactionIdentifier", val.transactionIdentifier); dict.Set("transactionIdentifier", val.transactionIdentifier);
dict.Set("transactionDate", val.transactionDate); dict.Set("transactionDate", val.transactionDate);
dict.Set("originalTransactionIdentifier", dict.Set("originalTransactionIdentifier",
@ -48,7 +51,8 @@ struct Converter<in_app_purchase::Product> {
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate, static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
const in_app_purchase::Product& val) { const in_app_purchase::Product& val) {
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate); mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate);
dict.SetHidden("simple", true); // TODO(zcbenz): Just call SetHidden when this file is converted to gin.
gin_helper::Dictionary(isolate, dict.GetHandle()).SetHidden("simple", true);
dict.Set("productIdentifier", val.productIdentifier); dict.Set("productIdentifier", val.productIdentifier);
dict.Set("localizedDescription", val.localizedDescription); dict.Set("localizedDescription", val.localizedDescription);
dict.Set("localizedTitle", val.localizedTitle); dict.Set("localizedTitle", val.localizedTitle);

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

@ -5,6 +5,7 @@
#include "shell/browser/api/atom_api_system_preferences.h" #include "shell/browser/api/atom_api_system_preferences.h"
#include "native_mate/dictionary.h" #include "native_mate/dictionary.h"
#include "shell/common/gin_helper/dictionary.h"
#include "shell/common/native_mate_converters/callback_converter_deprecated.h" #include "shell/common/native_mate_converters/callback_converter_deprecated.h"
#include "shell/common/native_mate_converters/value_converter.h" #include "shell/common/native_mate_converters/value_converter.h"
#include "shell/common/node_includes.h" #include "shell/common/node_includes.h"
@ -45,7 +46,7 @@ bool SystemPreferences::IsHighContrastColorScheme() {
v8::Local<v8::Value> SystemPreferences::GetAnimationSettings( v8::Local<v8::Value> SystemPreferences::GetAnimationSettings(
v8::Isolate* isolate) { v8::Isolate* isolate) {
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate); gin_helper::Dictionary dict = gin::Dictionary::CreateEmpty(isolate);
dict.SetHidden("simple", true); dict.SetHidden("simple", true);
dict.Set("shouldRenderRichAnimation", dict.Set("shouldRenderRichAnimation",
gfx::Animation::ShouldRenderRichAnimation()); gfx::Animation::ShouldRenderRichAnimation());

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

@ -47,7 +47,7 @@ struct Converter<electron::TaskbarHost::ThumbarButton> {
static bool FromV8(v8::Isolate* isolate, static bool FromV8(v8::Isolate* isolate,
v8::Handle<v8::Value> val, v8::Handle<v8::Value> val,
electron::TaskbarHost::ThumbarButton* out) { electron::TaskbarHost::ThumbarButton* out) {
gin::Dictionary dict; gin::Dictionary dict(isolate);
if (!gin::ConvertFromV8(isolate, val, &dict)) if (!gin::ConvertFromV8(isolate, val, &dict))
return false; return false;
dict.Get("click", &(out->clicked_callback)); dict.Get("click", &(out->clicked_callback));

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

@ -17,7 +17,6 @@
#include "content/public/browser/browser_thread.h" #include "content/public/browser/browser_thread.h"
#include "content/public/browser/download_item_utils.h" #include "content/public/browser/download_item_utils.h"
#include "content/public/browser/download_manager.h" #include "content/public/browser/download_manager.h"
#include "gin/dictionary.h"
#include "net/base/filename_util.h" #include "net/base/filename_util.h"
#include "shell/browser/api/atom_api_download_item.h" #include "shell/browser/api/atom_api_download_item.h"
#include "shell/browser/atom_browser_context.h" #include "shell/browser/atom_browser_context.h"
@ -124,7 +123,7 @@ void AtomDownloadManagerDelegate::OnDownloadPathGenerated(
settings.force_detached = offscreen; settings.force_detached = offscreen;
v8::Isolate* isolate = v8::Isolate::GetCurrent(); v8::Isolate* isolate = v8::Isolate::GetCurrent();
electron::util::Promise<gin::Dictionary> dialog_promise(isolate); electron::util::Promise<gin_helper::Dictionary> dialog_promise(isolate);
auto dialog_callback = auto dialog_callback =
base::BindOnce(&AtomDownloadManagerDelegate::OnDownloadSaveDialogDone, base::BindOnce(&AtomDownloadManagerDelegate::OnDownloadSaveDialogDone,
base::Unretained(this), download_id, callback); base::Unretained(this), download_id, callback);
@ -141,7 +140,7 @@ void AtomDownloadManagerDelegate::OnDownloadPathGenerated(
void AtomDownloadManagerDelegate::OnDownloadSaveDialogDone( void AtomDownloadManagerDelegate::OnDownloadSaveDialogDone(
uint32_t download_id, uint32_t download_id,
const content::DownloadTargetCallback& download_callback, const content::DownloadTargetCallback& download_callback,
gin::Dictionary result) { gin_helper::Dictionary result) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI); DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
auto* item = download_manager_->GetDownload(download_id); auto* item = download_manager_->GetDownload(download_id);

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

@ -10,6 +10,7 @@
#include "base/memory/weak_ptr.h" #include "base/memory/weak_ptr.h"
#include "content/public/browser/download_manager_delegate.h" #include "content/public/browser/download_manager_delegate.h"
#include "shell/browser/ui/file_dialog.h" #include "shell/browser/ui/file_dialog.h"
#include "shell/common/gin_helper/dictionary.h"
namespace content { namespace content {
class DownloadManager; class DownloadManager;
@ -48,7 +49,7 @@ class AtomDownloadManagerDelegate : public content::DownloadManagerDelegate {
void OnDownloadSaveDialogDone( void OnDownloadSaveDialogDone(
uint32_t download_id, uint32_t download_id,
const content::DownloadTargetCallback& download_callback, const content::DownloadTargetCallback& download_callback,
gin::Dictionary result); gin_helper::Dictionary result);
content::DownloadManager* download_manager_; content::DownloadManager* download_manager_;
base::WeakPtrFactory<AtomDownloadManagerDelegate> weak_ptr_factory_; base::WeakPtrFactory<AtomDownloadManagerDelegate> weak_ptr_factory_;

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

@ -38,7 +38,7 @@ namespace electron {
bool AtomBundleMover::ShouldContinueMove(gin_helper::ErrorThrower thrower, bool AtomBundleMover::ShouldContinueMove(gin_helper::ErrorThrower thrower,
BundlerMoverConflictType type, BundlerMoverConflictType type,
gin::Arguments* args) { gin::Arguments* args) {
gin::Dictionary options; gin::Dictionary options(args->isolate());
bool hasOptions = args->GetNext(&options); bool hasOptions = args->GetNext(&options);
base::OnceCallback<v8::Local<v8::Value>(BundlerMoverConflictType)> base::OnceCallback<v8::Local<v8::Value>(BundlerMoverConflictType)>
conflict_cb; conflict_cb;

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

@ -10,7 +10,7 @@
#include <vector> #include <vector>
#include "base/files/file_path.h" #include "base/files/file_path.h"
#include "gin/dictionary.h" #include "shell/common/gin_helper/dictionary.h"
#include "shell/common/promise_util.h" #include "shell/common/promise_util.h"
namespace electron { namespace electron {
@ -65,12 +65,12 @@ bool ShowOpenDialogSync(const DialogSettings& settings,
std::vector<base::FilePath>* paths); std::vector<base::FilePath>* paths);
void ShowOpenDialog(const DialogSettings& settings, void ShowOpenDialog(const DialogSettings& settings,
electron::util::Promise<gin::Dictionary> promise); electron::util::Promise<gin_helper::Dictionary> promise);
bool ShowSaveDialogSync(const DialogSettings& settings, base::FilePath* path); bool ShowSaveDialogSync(const DialogSettings& settings, base::FilePath* path);
void ShowSaveDialog(const DialogSettings& settings, void ShowSaveDialog(const DialogSettings& settings,
electron::util::Promise<gin::Dictionary> promise); electron::util::Promise<gin_helper::Dictionary> promise);
} // namespace file_dialog } // namespace file_dialog

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

@ -138,15 +138,17 @@ class FileChooserDialog {
gtk_window_present_with_time(GTK_WINDOW(dialog_), time); gtk_window_present_with_time(GTK_WINDOW(dialog_), time);
} }
void RunSaveAsynchronous(electron::util::Promise<gin::Dictionary> promise) { void RunSaveAsynchronous(
save_promise_.reset( electron::util::Promise<gin_helper::Dictionary> promise) {
new electron::util::Promise<gin::Dictionary>(std::move(promise))); save_promise_.reset(new electron::util::Promise<gin_helper::Dictionary>(
std::move(promise)));
RunAsynchronous(); RunAsynchronous();
} }
void RunOpenAsynchronous(electron::util::Promise<gin::Dictionary> promise) { void RunOpenAsynchronous(
open_promise_.reset( electron::util::Promise<gin_helper::Dictionary> promise) {
new electron::util::Promise<gin::Dictionary>(std::move(promise))); open_promise_.reset(new electron::util::Promise<gin_helper::Dictionary>(
std::move(promise)));
RunAsynchronous(); RunAsynchronous();
} }
@ -187,8 +189,10 @@ class FileChooserDialog {
GtkWidget* preview_; GtkWidget* preview_;
Filters filters_; Filters filters_;
std::unique_ptr<electron::util::Promise<gin::Dictionary>> save_promise_; std::unique_ptr<electron::util::Promise<gin_helper::Dictionary>>
std::unique_ptr<electron::util::Promise<gin::Dictionary>> open_promise_; save_promise_;
std::unique_ptr<electron::util::Promise<gin_helper::Dictionary>>
open_promise_;
// Callback for when we update the preview for the selection. // Callback for when we update the preview for the selection.
CHROMEG_CALLBACK_0(FileChooserDialog, void, OnUpdatePreview, GtkWidget*); CHROMEG_CALLBACK_0(FileChooserDialog, void, OnUpdatePreview, GtkWidget*);
@ -199,7 +203,7 @@ class FileChooserDialog {
void FileChooserDialog::OnFileDialogResponse(GtkWidget* widget, int response) { void FileChooserDialog::OnFileDialogResponse(GtkWidget* widget, int response) {
gtk_widget_hide(dialog_); gtk_widget_hide(dialog_);
if (save_promise_) { if (save_promise_) {
gin::Dictionary dict = gin_helper::Dictionary dict =
gin::Dictionary::CreateEmpty(save_promise_->isolate()); gin::Dictionary::CreateEmpty(save_promise_->isolate());
if (response == GTK_RESPONSE_ACCEPT) { if (response == GTK_RESPONSE_ACCEPT) {
dict.Set("canceled", false); dict.Set("canceled", false);
@ -210,7 +214,7 @@ void FileChooserDialog::OnFileDialogResponse(GtkWidget* widget, int response) {
} }
save_promise_->ResolveWithGin(dict); save_promise_->ResolveWithGin(dict);
} else if (open_promise_) { } else if (open_promise_) {
gin::Dictionary dict = gin_helper::Dictionary dict =
gin::Dictionary::CreateEmpty(open_promise_->isolate()); gin::Dictionary::CreateEmpty(open_promise_->isolate());
if (response == GTK_RESPONSE_ACCEPT) { if (response == GTK_RESPONSE_ACCEPT) {
dict.Set("canceled", false); dict.Set("canceled", false);
@ -295,7 +299,7 @@ bool ShowOpenDialogSync(const DialogSettings& settings,
} }
void ShowOpenDialog(const DialogSettings& settings, void ShowOpenDialog(const DialogSettings& settings,
electron::util::Promise<gin::Dictionary> promise) { electron::util::Promise<gin_helper::Dictionary> promise) {
GtkFileChooserAction action = GTK_FILE_CHOOSER_ACTION_OPEN; GtkFileChooserAction action = GTK_FILE_CHOOSER_ACTION_OPEN;
if (settings.properties & OPEN_DIALOG_OPEN_DIRECTORY) if (settings.properties & OPEN_DIALOG_OPEN_DIRECTORY)
action = GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER; action = GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER;
@ -318,7 +322,7 @@ bool ShowSaveDialogSync(const DialogSettings& settings, base::FilePath* path) {
} }
void ShowSaveDialog(const DialogSettings& settings, void ShowSaveDialog(const DialogSettings& settings,
electron::util::Promise<gin::Dictionary> promise) { electron::util::Promise<gin_helper::Dictionary> promise) {
FileChooserDialog* save_dialog = FileChooserDialog* save_dialog =
new FileChooserDialog(GTK_FILE_CHOOSER_ACTION_SAVE, settings); new FileChooserDialog(GTK_FILE_CHOOSER_ACTION_SAVE, settings);
save_dialog->RunSaveAsynchronous(std::move(promise)); save_dialog->RunSaveAsynchronous(std::move(promise));

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

@ -298,11 +298,12 @@ bool ShowOpenDialogSync(const DialogSettings& settings,
return true; return true;
} }
void OpenDialogCompletion(int chosen, void OpenDialogCompletion(
NSOpenPanel* dialog, int chosen,
bool security_scoped_bookmarks, NSOpenPanel* dialog,
electron::util::Promise<gin::Dictionary> promise) { bool security_scoped_bookmarks,
gin::Dictionary dict = gin::Dictionary::CreateEmpty(promise.isolate()); electron::util::Promise<gin_helper::Dictionary> promise) {
gin_helper::Dictionary dict = gin::Dictionary::CreateEmpty(promise.isolate());
if (chosen == NSFileHandlingPanelCancelButton) { if (chosen == NSFileHandlingPanelCancelButton) {
dict.Set("canceled", true); dict.Set("canceled", true);
dict.Set("filePaths", std::vector<base::FilePath>()); dict.Set("filePaths", std::vector<base::FilePath>());
@ -330,7 +331,7 @@ void OpenDialogCompletion(int chosen,
} }
void ShowOpenDialog(const DialogSettings& settings, void ShowOpenDialog(const DialogSettings& settings,
electron::util::Promise<gin::Dictionary> promise) { electron::util::Promise<gin_helper::Dictionary> promise) {
NSOpenPanel* dialog = [NSOpenPanel openPanel]; NSOpenPanel* dialog = [NSOpenPanel openPanel];
SetupDialog(dialog, settings); SetupDialog(dialog, settings);
@ -340,7 +341,8 @@ void ShowOpenDialog(const DialogSettings& settings,
// and pass it to the completion handler. // and pass it to the completion handler.
bool security_scoped_bookmarks = settings.security_scoped_bookmarks; bool security_scoped_bookmarks = settings.security_scoped_bookmarks;
__block electron::util::Promise<gin::Dictionary> p = std::move(promise); __block electron::util::Promise<gin_helper::Dictionary> p =
std::move(promise);
if (!settings.parent_window || !settings.parent_window->GetNativeWindow() || if (!settings.parent_window || !settings.parent_window->GetNativeWindow() ||
settings.force_detached) { settings.force_detached) {
@ -375,11 +377,12 @@ bool ShowSaveDialogSync(const DialogSettings& settings, base::FilePath* path) {
return true; return true;
} }
void SaveDialogCompletion(int chosen, void SaveDialogCompletion(
NSSavePanel* dialog, int chosen,
bool security_scoped_bookmarks, NSSavePanel* dialog,
electron::util::Promise<gin::Dictionary> promise) { bool security_scoped_bookmarks,
gin::Dictionary dict = gin::Dictionary::CreateEmpty(promise.isolate()); electron::util::Promise<gin_helper::Dictionary> promise) {
gin_helper::Dictionary dict = gin::Dictionary::CreateEmpty(promise.isolate());
if (chosen == NSFileHandlingPanelCancelButton) { if (chosen == NSFileHandlingPanelCancelButton) {
dict.Set("canceled", true); dict.Set("canceled", true);
dict.Set("filePath", base::FilePath()); dict.Set("filePath", base::FilePath());
@ -402,7 +405,7 @@ void SaveDialogCompletion(int chosen,
} }
void ShowSaveDialog(const DialogSettings& settings, void ShowSaveDialog(const DialogSettings& settings,
electron::util::Promise<gin::Dictionary> promise) { electron::util::Promise<gin_helper::Dictionary> promise) {
NSSavePanel* dialog = [NSSavePanel savePanel]; NSSavePanel* dialog = [NSSavePanel savePanel];
SetupDialog(dialog, settings); SetupDialog(dialog, settings);
@ -413,7 +416,8 @@ void ShowSaveDialog(const DialogSettings& settings,
// and pass it to the completion handler. // and pass it to the completion handler.
bool security_scoped_bookmarks = settings.security_scoped_bookmarks; bool security_scoped_bookmarks = settings.security_scoped_bookmarks;
__block electron::util::Promise<gin::Dictionary> p = std::move(promise); __block electron::util::Promise<gin_helper::Dictionary> p =
std::move(promise);
if (!settings.parent_window || !settings.parent_window->GetNativeWindow() || if (!settings.parent_window || !settings.parent_window->GetNativeWindow() ||
settings.force_detached) { settings.force_detached) {

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

@ -82,10 +82,10 @@ bool CreateDialogThread(RunState* run_state) {
return true; return true;
} }
void OnDialogOpened(electron::util::Promise<gin::Dictionary> promise, void OnDialogOpened(electron::util::Promise<gin_helper::Dictionary> promise,
bool canceled, bool canceled,
std::vector<base::FilePath> paths) { std::vector<base::FilePath> paths) {
gin::Dictionary dict = gin::Dictionary::CreateEmpty(promise.isolate()); gin_helper::Dictionary dict = gin::Dictionary::CreateEmpty(promise.isolate());
dict.Set("canceled", canceled); dict.Set("canceled", canceled);
dict.Set("filePaths", paths); dict.Set("filePaths", paths);
promise.ResolveWithGin(dict); promise.ResolveWithGin(dict);
@ -94,7 +94,7 @@ void OnDialogOpened(electron::util::Promise<gin::Dictionary> promise,
void RunOpenDialogInNewThread( void RunOpenDialogInNewThread(
const RunState& run_state, const RunState& run_state,
const DialogSettings& settings, const DialogSettings& settings,
electron::util::Promise<gin::Dictionary> promise) { electron::util::Promise<gin_helper::Dictionary> promise) {
std::vector<base::FilePath> paths; std::vector<base::FilePath> paths;
bool result = ShowOpenDialogSync(settings, &paths); bool result = ShowOpenDialogSync(settings, &paths);
run_state.ui_task_runner->PostTask( run_state.ui_task_runner->PostTask(
@ -103,10 +103,10 @@ void RunOpenDialogInNewThread(
run_state.ui_task_runner->DeleteSoon(FROM_HERE, run_state.dialog_thread); run_state.ui_task_runner->DeleteSoon(FROM_HERE, run_state.dialog_thread);
} }
void OnSaveDialogDone(electron::util::Promise<gin::Dictionary> promise, void OnSaveDialogDone(electron::util::Promise<gin_helper::Dictionary> promise,
bool canceled, bool canceled,
const base::FilePath path) { const base::FilePath path) {
gin::Dictionary dict = gin::Dictionary::CreateEmpty(promise.isolate()); gin_helper::Dictionary dict = gin::Dictionary::CreateEmpty(promise.isolate());
dict.Set("canceled", canceled); dict.Set("canceled", canceled);
dict.Set("filePath", path); dict.Set("filePath", path);
promise.ResolveWithGin(dict); promise.ResolveWithGin(dict);
@ -115,7 +115,7 @@ void OnSaveDialogDone(electron::util::Promise<gin::Dictionary> promise,
void RunSaveDialogInNewThread( void RunSaveDialogInNewThread(
const RunState& run_state, const RunState& run_state,
const DialogSettings& settings, const DialogSettings& settings,
electron::util::Promise<gin::Dictionary> promise) { electron::util::Promise<gin_helper::Dictionary> promise) {
base::FilePath path; base::FilePath path;
bool result = ShowSaveDialogSync(settings, &path); bool result = ShowSaveDialogSync(settings, &path);
run_state.ui_task_runner->PostTask( run_state.ui_task_runner->PostTask(
@ -277,8 +277,8 @@ bool ShowOpenDialogSync(const DialogSettings& settings,
} }
void ShowOpenDialog(const DialogSettings& settings, void ShowOpenDialog(const DialogSettings& settings,
electron::util::Promise<gin::Dictionary> promise) { electron::util::Promise<gin_helper::Dictionary> promise) {
gin::Dictionary dict = gin::Dictionary::CreateEmpty(promise.isolate()); gin_helper::Dictionary dict = gin::Dictionary::CreateEmpty(promise.isolate());
RunState run_state; RunState run_state;
if (!CreateDialogThread(&run_state)) { if (!CreateDialogThread(&run_state)) {
dict.Set("canceled", true); dict.Set("canceled", true);
@ -327,10 +327,11 @@ bool ShowSaveDialogSync(const DialogSettings& settings, base::FilePath* path) {
} }
void ShowSaveDialog(const DialogSettings& settings, void ShowSaveDialog(const DialogSettings& settings,
electron::util::Promise<gin::Dictionary> promise) { electron::util::Promise<gin_helper::Dictionary> promise) {
RunState run_state; RunState run_state;
if (!CreateDialogThread(&run_state)) { if (!CreateDialogThread(&run_state)) {
gin::Dictionary dict = gin::Dictionary::CreateEmpty(promise.isolate()); gin_helper::Dictionary dict =
gin::Dictionary::CreateEmpty(promise.isolate());
dict.Set("canceled", true); dict.Set("canceled", true);
dict.Set("filePath", base::FilePath()); dict.Set("filePath", base::FilePath());
promise.ResolveWithGin(dict); promise.ResolveWithGin(dict);

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

@ -28,6 +28,7 @@
#include "shell/browser/ui/file_dialog.h" #include "shell/browser/ui/file_dialog.h"
#include "shell/common/gin_converters/callback_converter.h" #include "shell/common/gin_converters/callback_converter.h"
#include "shell/common/gin_converters/file_path_converter.h" #include "shell/common/gin_converters/file_path_converter.h"
#include "shell/common/gin_helper/dictionary.h"
#include "ui/shell_dialogs/selected_file_info.h" #include "ui/shell_dialogs/selected_file_info.h"
using blink::mojom::FileChooserFileInfo; using blink::mojom::FileChooserFileInfo;
@ -55,7 +56,7 @@ class FileSelectHelper : public base::RefCounted<FileSelectHelper>,
void ShowOpenDialog(const file_dialog::DialogSettings& settings) { void ShowOpenDialog(const file_dialog::DialogSettings& settings) {
v8::Isolate* isolate = v8::Isolate::GetCurrent(); v8::Isolate* isolate = v8::Isolate::GetCurrent();
electron::util::Promise<gin::Dictionary> promise(isolate); electron::util::Promise<gin_helper::Dictionary> promise(isolate);
auto callback = base::BindOnce(&FileSelectHelper::OnOpenDialogDone, this); auto callback = base::BindOnce(&FileSelectHelper::OnOpenDialogDone, this);
ignore_result(promise.Then(std::move(callback))); ignore_result(promise.Then(std::move(callback)));
@ -65,7 +66,7 @@ class FileSelectHelper : public base::RefCounted<FileSelectHelper>,
void ShowSaveDialog(const file_dialog::DialogSettings& settings) { void ShowSaveDialog(const file_dialog::DialogSettings& settings) {
v8::Isolate* isolate = v8::Isolate::GetCurrent(); v8::Isolate* isolate = v8::Isolate::GetCurrent();
electron::util::Promise<gin::Dictionary> promise(isolate); electron::util::Promise<gin_helper::Dictionary> promise(isolate);
auto callback = base::BindOnce(&FileSelectHelper::OnSaveDialogDone, this); auto callback = base::BindOnce(&FileSelectHelper::OnSaveDialogDone, this);
ignore_result(promise.Then(std::move(callback))); ignore_result(promise.Then(std::move(callback)));
@ -116,7 +117,7 @@ class FileSelectHelper : public base::RefCounted<FileSelectHelper>,
AddRef(); AddRef();
} }
void OnOpenDialogDone(gin::Dictionary result) { void OnOpenDialogDone(gin_helper::Dictionary result) {
std::vector<FileChooserFileInfoPtr> file_info; std::vector<FileChooserFileInfoPtr> file_info;
bool canceled = true; bool canceled = true;
result.Get("canceled", &canceled); result.Get("canceled", &canceled);
@ -158,7 +159,7 @@ class FileSelectHelper : public base::RefCounted<FileSelectHelper>,
} }
} }
void OnSaveDialogDone(gin::Dictionary result) { void OnSaveDialogDone(gin_helper::Dictionary result) {
std::vector<FileChooserFileInfoPtr> file_info; std::vector<FileChooserFileInfoPtr> file_info;
bool canceled = true; bool canceled = true;
result.Get("canceled", &canceled); result.Get("canceled", &canceled);

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

@ -24,6 +24,7 @@
#include "shell/browser/browser.h" #include "shell/browser/browser.h"
#include "shell/common/api/locker.h" #include "shell/common/api/locker.h"
#include "shell/common/application_info.h" #include "shell/common/application_info.h"
#include "shell/common/gin_helper/dictionary.h"
#include "shell/common/heap_snapshot.h" #include "shell/common/heap_snapshot.h"
#include "shell/common/native_mate_converters/file_path_converter.h" #include "shell/common/native_mate_converters/file_path_converter.h"
#include "shell/common/native_mate_converters/string16_converter.h" #include "shell/common/native_mate_converters/string16_converter.h"
@ -162,7 +163,7 @@ v8::Local<v8::Value> ElectronBindings::GetHeapStatistics(v8::Isolate* isolate) {
v8::HeapStatistics v8_heap_stats; v8::HeapStatistics v8_heap_stats;
isolate->GetHeapStatistics(&v8_heap_stats); isolate->GetHeapStatistics(&v8_heap_stats);
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate); gin_helper::Dictionary dict = gin::Dictionary::CreateEmpty(isolate);
dict.SetHidden("simple", true); dict.SetHidden("simple", true);
dict.Set("totalHeapSize", dict.Set("totalHeapSize",
static_cast<double>(v8_heap_stats.total_heap_size() >> 10)); static_cast<double>(v8_heap_stats.total_heap_size() >> 10));
@ -207,7 +208,7 @@ v8::Local<v8::Value> ElectronBindings::GetSystemMemoryInfo(
return v8::Undefined(isolate); return v8::Undefined(isolate);
} }
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate); gin_helper::Dictionary dict = gin::Dictionary::CreateEmpty(isolate);
dict.SetHidden("simple", true); dict.SetHidden("simple", true);
dict.Set("total", mem_info.total); dict.Set("total", mem_info.total);
@ -256,7 +257,7 @@ v8::Local<v8::Value> ElectronBindings::GetBlinkMemoryInfo(
auto allocated = blink::ProcessHeap::TotalAllocatedObjectSize(); auto allocated = blink::ProcessHeap::TotalAllocatedObjectSize();
auto total = blink::ProcessHeap::TotalAllocatedSpace(); auto total = blink::ProcessHeap::TotalAllocatedSpace();
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate); gin_helper::Dictionary dict = gin::Dictionary::CreateEmpty(isolate);
dict.SetHidden("simple", true); dict.SetHidden("simple", true);
dict.Set("allocated", static_cast<double>(allocated >> 10)); dict.Set("allocated", static_cast<double>(allocated >> 10));
dict.Set("total", static_cast<double>(total >> 10)); dict.Set("total", static_cast<double>(total >> 10));
@ -308,7 +309,7 @@ void ElectronBindings::DidReceiveMemoryDump(
v8::Local<v8::Value> ElectronBindings::GetCPUUsage( v8::Local<v8::Value> ElectronBindings::GetCPUUsage(
base::ProcessMetrics* metrics, base::ProcessMetrics* metrics,
v8::Isolate* isolate) { v8::Isolate* isolate) {
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate); gin_helper::Dictionary dict = gin::Dictionary::CreateEmpty(isolate);
dict.SetHidden("simple", true); dict.SetHidden("simple", true);
int processor_count = base::SysInfo::NumberOfProcessors(); int processor_count = base::SysInfo::NumberOfProcessors();
dict.Set("percentCPUUsage", dict.Set("percentCPUUsage",
@ -329,7 +330,7 @@ v8::Local<v8::Value> ElectronBindings::GetCPUUsage(
v8::Local<v8::Value> ElectronBindings::GetIOCounters(v8::Isolate* isolate) { v8::Local<v8::Value> ElectronBindings::GetIOCounters(v8::Isolate* isolate) {
auto metrics = base::ProcessMetrics::CreateCurrentProcessMetrics(); auto metrics = base::ProcessMetrics::CreateCurrentProcessMetrics();
base::IoCounters io_counters; base::IoCounters io_counters;
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate); gin_helper::Dictionary dict = gin::Dictionary::CreateEmpty(isolate);
dict.SetHidden("simple", true); dict.SetHidden("simple", true);
if (metrics->GetIOCounters(&io_counters)) { if (metrics->GetIOCounters(&io_counters)) {

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

@ -30,6 +30,23 @@ struct Converter<unsigned long> { // NOLINT(runtime/int)
}; };
#endif #endif
template <>
struct Converter<const char*> {
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate, const char* val) {
return v8::String::NewFromUtf8(isolate, val, v8::NewStringType::kNormal)
.ToLocalChecked();
}
};
template <size_t n>
struct Converter<const char[n]> {
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate, const char* val) {
return v8::String::NewFromUtf8(isolate, val, v8::NewStringType::kNormal,
n - 1)
.ToLocalChecked();
}
};
template <> template <>
struct Converter<v8::Local<v8::Array>> { struct Converter<v8::Local<v8::Array>> {
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate, static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,

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

@ -56,9 +56,41 @@ struct CallbackTraits<
// convert between 2 types, we must not add any member. // convert between 2 types, we must not add any member.
class Dictionary : public gin::Dictionary { class Dictionary : public gin::Dictionary {
public: public:
Dictionary() : gin::Dictionary(nullptr) {}
Dictionary(v8::Isolate* isolate, v8::Local<v8::Object> object) Dictionary(v8::Isolate* isolate, v8::Local<v8::Object> object)
: gin::Dictionary(isolate, object) {} : gin::Dictionary(isolate, object) {}
// Allow implicitly converting from gin::Dictionary, as it is absolutely
// safe in this case.
Dictionary(const gin::Dictionary& dict) // NOLINT(runtime/explicit)
: gin::Dictionary(dict) {}
template <typename T>
bool GetHidden(base::StringPiece key, T* out) const {
v8::Local<v8::Context> context = isolate()->GetCurrentContext();
v8::Local<v8::Private> privateKey =
v8::Private::ForApi(isolate(), gin::StringToV8(isolate(), key));
v8::Local<v8::Value> value;
v8::Maybe<bool> result = GetHandle()->HasPrivate(context, privateKey);
if (result.IsJust() && result.FromJust() &&
GetHandle()->GetPrivate(context, privateKey).ToLocal(&value))
return gin::ConvertFromV8(isolate(), value, out);
return false;
}
template <typename T>
bool SetHidden(base::StringPiece key, T val) {
v8::Local<v8::Value> v8_value;
if (!gin::TryConvertToV8(isolate(), val, &v8_value))
return false;
v8::Local<v8::Context> context = isolate()->GetCurrentContext();
v8::Local<v8::Private> privateKey =
v8::Private::ForApi(isolate(), gin::StringToV8(isolate(), key));
v8::Maybe<bool> result =
GetHandle()->SetPrivate(context, privateKey, v8_value);
return !result.IsNothing() && result.FromJust();
}
template <typename T> template <typename T>
bool SetMethod(base::StringPiece key, const T& callback) { bool SetMethod(base::StringPiece key, const T& callback) {
auto context = isolate()->GetCurrentContext(); auto context = isolate()->GetCurrentContext();
@ -98,4 +130,25 @@ class Dictionary : public gin::Dictionary {
} // namespace gin_helper } // namespace gin_helper
namespace gin {
template <>
struct Converter<gin_helper::Dictionary> {
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
gin_helper::Dictionary val) {
return val.GetHandle();
}
static bool FromV8(v8::Isolate* isolate,
v8::Local<v8::Value> val,
gin_helper::Dictionary* out) {
gin::Dictionary gdict(isolate);
if (!ConvertFromV8(isolate, val, &gdict))
return false;
*out = gin_helper::Dictionary(gdict);
return true;
}
};
} // namespace gin
#endif // SHELL_COMMON_GIN_HELPER_DICTIONARY_H_ #endif // SHELL_COMMON_GIN_HELPER_DICTIONARY_H_

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

@ -5,6 +5,7 @@
#include "shell/common/native_mate_converters/gfx_converter.h" #include "shell/common/native_mate_converters/gfx_converter.h"
#include "native_mate/dictionary.h" #include "native_mate/dictionary.h"
#include "shell/common/gin_helper/dictionary.h"
#include "ui/display/display.h" #include "ui/display/display.h"
#include "ui/display/screen.h" #include "ui/display/screen.h"
#include "ui/gfx/geometry/point.h" #include "ui/gfx/geometry/point.h"
@ -15,7 +16,7 @@ namespace mate {
v8::Local<v8::Value> Converter<gfx::Point>::ToV8(v8::Isolate* isolate, v8::Local<v8::Value> Converter<gfx::Point>::ToV8(v8::Isolate* isolate,
const gfx::Point& val) { const gfx::Point& val) {
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate); gin_helper::Dictionary dict = gin::Dictionary::CreateEmpty(isolate);
dict.SetHidden("simple", true); dict.SetHidden("simple", true);
dict.Set("x", val.x()); dict.Set("x", val.x());
dict.Set("y", val.y()); dict.Set("y", val.y());
@ -25,8 +26,8 @@ v8::Local<v8::Value> Converter<gfx::Point>::ToV8(v8::Isolate* isolate,
bool Converter<gfx::Point>::FromV8(v8::Isolate* isolate, bool Converter<gfx::Point>::FromV8(v8::Isolate* isolate,
v8::Local<v8::Value> val, v8::Local<v8::Value> val,
gfx::Point* out) { gfx::Point* out) {
mate::Dictionary dict; gin::Dictionary dict(isolate);
if (!ConvertFromV8(isolate, val, &dict)) if (!gin::ConvertFromV8(isolate, val, &dict))
return false; return false;
double x, y; double x, y;
if (!dict.Get("x", &x) || !dict.Get("y", &y)) if (!dict.Get("x", &x) || !dict.Get("y", &y))
@ -38,7 +39,7 @@ bool Converter<gfx::Point>::FromV8(v8::Isolate* isolate,
v8::Local<v8::Value> Converter<gfx::PointF>::ToV8(v8::Isolate* isolate, v8::Local<v8::Value> Converter<gfx::PointF>::ToV8(v8::Isolate* isolate,
const gfx::PointF& val) { const gfx::PointF& val) {
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate); gin_helper::Dictionary dict = gin::Dictionary::CreateEmpty(isolate);
dict.SetHidden("simple", true); dict.SetHidden("simple", true);
dict.Set("x", val.x()); dict.Set("x", val.x());
dict.Set("y", val.y()); dict.Set("y", val.y());
@ -48,8 +49,8 @@ v8::Local<v8::Value> Converter<gfx::PointF>::ToV8(v8::Isolate* isolate,
bool Converter<gfx::PointF>::FromV8(v8::Isolate* isolate, bool Converter<gfx::PointF>::FromV8(v8::Isolate* isolate,
v8::Local<v8::Value> val, v8::Local<v8::Value> val,
gfx::PointF* out) { gfx::PointF* out) {
mate::Dictionary dict; gin::Dictionary dict(isolate);
if (!ConvertFromV8(isolate, val, &dict)) if (!gin::ConvertFromV8(isolate, val, &dict))
return false; return false;
float x, y; float x, y;
if (!dict.Get("x", &x) || !dict.Get("y", &y)) if (!dict.Get("x", &x) || !dict.Get("y", &y))
@ -60,7 +61,7 @@ bool Converter<gfx::PointF>::FromV8(v8::Isolate* isolate,
v8::Local<v8::Value> Converter<gfx::Size>::ToV8(v8::Isolate* isolate, v8::Local<v8::Value> Converter<gfx::Size>::ToV8(v8::Isolate* isolate,
const gfx::Size& val) { const gfx::Size& val) {
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate); gin_helper::Dictionary dict = gin::Dictionary::CreateEmpty(isolate);
dict.SetHidden("simple", true); dict.SetHidden("simple", true);
dict.Set("width", val.width()); dict.Set("width", val.width());
dict.Set("height", val.height()); dict.Set("height", val.height());
@ -70,8 +71,8 @@ v8::Local<v8::Value> Converter<gfx::Size>::ToV8(v8::Isolate* isolate,
bool Converter<gfx::Size>::FromV8(v8::Isolate* isolate, bool Converter<gfx::Size>::FromV8(v8::Isolate* isolate,
v8::Local<v8::Value> val, v8::Local<v8::Value> val,
gfx::Size* out) { gfx::Size* out) {
mate::Dictionary dict; gin::Dictionary dict(isolate);
if (!ConvertFromV8(isolate, val, &dict)) if (!gin::ConvertFromV8(isolate, val, &dict))
return false; return false;
int width, height; int width, height;
if (!dict.Get("width", &width) || !dict.Get("height", &height)) if (!dict.Get("width", &width) || !dict.Get("height", &height))
@ -82,7 +83,7 @@ bool Converter<gfx::Size>::FromV8(v8::Isolate* isolate,
v8::Local<v8::Value> Converter<gfx::Rect>::ToV8(v8::Isolate* isolate, v8::Local<v8::Value> Converter<gfx::Rect>::ToV8(v8::Isolate* isolate,
const gfx::Rect& val) { const gfx::Rect& val) {
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate); gin_helper::Dictionary dict = gin::Dictionary::CreateEmpty(isolate);
dict.SetHidden("simple", true); dict.SetHidden("simple", true);
dict.Set("x", val.x()); dict.Set("x", val.x());
dict.Set("y", val.y()); dict.Set("y", val.y());
@ -94,8 +95,8 @@ v8::Local<v8::Value> Converter<gfx::Rect>::ToV8(v8::Isolate* isolate,
bool Converter<gfx::Rect>::FromV8(v8::Isolate* isolate, bool Converter<gfx::Rect>::FromV8(v8::Isolate* isolate,
v8::Local<v8::Value> val, v8::Local<v8::Value> val,
gfx::Rect* out) { gfx::Rect* out) {
mate::Dictionary dict; gin::Dictionary dict(isolate);
if (!ConvertFromV8(isolate, val, &dict)) if (!gin::ConvertFromV8(isolate, val, &dict))
return false; return false;
int x, y, width, height; int x, y, width, height;
if (!dict.Get("x", &x) || !dict.Get("y", &y) || !dict.Get("width", &width) || if (!dict.Get("x", &x) || !dict.Get("y", &y) || !dict.Get("width", &width) ||
@ -140,7 +141,8 @@ v8::Local<v8::Value> Converter<display::Display>::ToV8(
v8::Isolate* isolate, v8::Isolate* isolate,
const display::Display& val) { const display::Display& val) {
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate); mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate);
dict.SetHidden("simple", true); // TODO(zcbenz): Just call SetHidden when this file is converted to gin.
gin_helper::Dictionary(isolate, dict.GetHandle()).SetHidden("simple", true);
dict.Set("id", val.id()); dict.Set("id", val.id());
dict.Set("bounds", val.bounds()); dict.Set("bounds", val.bounds());
dict.Set("workArea", val.work_area()); dict.Set("workArea", val.work_area());

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

@ -10,10 +10,8 @@
#include <utility> #include <utility>
#include <vector> #include <vector>
#include "base/logging.h"
#include "base/values.h" #include "base/values.h"
#include "native_mate/dictionary.h" #include "shell/common/gin_helper/dictionary.h"
#include "shell/common/node_bindings.h" #include "shell/common/node_bindings.h"
#include "shell/common/node_includes.h" #include "shell/common/node_includes.h"
@ -224,7 +222,7 @@ v8::Local<v8::Value> V8ValueConverter::ToV8Array(
v8::Local<v8::Value> V8ValueConverter::ToV8Object( v8::Local<v8::Value> V8ValueConverter::ToV8Object(
v8::Isolate* isolate, v8::Isolate* isolate,
const base::DictionaryValue* val) const { const base::DictionaryValue* val) const {
mate::Dictionary result = mate::Dictionary::CreateEmpty(isolate); gin_helper::Dictionary result = gin::Dictionary::CreateEmpty(isolate);
result.SetHidden("simple", true); result.SetHidden("simple", true);
for (base::DictionaryValue::Iterator iter(*val); !iter.IsAtEnd(); for (base::DictionaryValue::Iterator iter(*val); !iter.IsAtEnd();
@ -262,7 +260,7 @@ v8::Local<v8::Value> V8ValueConverter::ToArrayBuffer(
// From this point, if something goes wrong(can't find Buffer class for // From this point, if something goes wrong(can't find Buffer class for
// example) we'll simply return a Uint8Array based on the created ArrayBuffer. // example) we'll simply return a Uint8Array based on the created ArrayBuffer.
// This can happen if no preload script was specified to the renderer. // This can happen if no preload script was specified to the renderer.
mate::Dictionary global(isolate, context->Global()); gin_helper::Dictionary global(isolate, context->Global());
v8::Local<v8::Value> buffer_value; v8::Local<v8::Value> buffer_value;
// Get the Buffer class stored as a hidden value in the global object. We'll // Get the Buffer class stored as a hidden value in the global object. We'll
@ -272,7 +270,7 @@ v8::Local<v8::Value> V8ValueConverter::ToArrayBuffer(
return v8::Uint8Array::New(array_buffer, 0, length); return v8::Uint8Array::New(array_buffer, 0, length);
} }
mate::Dictionary buffer_class( gin::Dictionary buffer_class(
isolate, isolate,
buffer_value->ToObject(isolate->GetCurrentContext()).ToLocalChecked()); buffer_value->ToObject(isolate->GetCurrentContext()).ToLocalChecked());
v8::Local<v8::Value> from_value; v8::Local<v8::Value> from_value;

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

@ -15,6 +15,7 @@
#include "native_mate/dictionary.h" #include "native_mate/dictionary.h"
#include "shell/common/api/electron_bindings.h" #include "shell/common/api/electron_bindings.h"
#include "shell/common/application_info.h" #include "shell/common/application_info.h"
#include "shell/common/gin_helper/dictionary.h"
#include "shell/common/native_mate_converters/string16_converter.h" #include "shell/common/native_mate_converters/string16_converter.h"
#include "shell/common/native_mate_converters/value_converter.h" #include "shell/common/native_mate_converters/value_converter.h"
#include "shell/common/node_bindings.h" #include "shell/common/node_bindings.h"
@ -45,7 +46,7 @@ bool IsDevToolsExtension(content::RenderFrame* render_frame) {
v8::Local<v8::Object> GetModuleCache(v8::Isolate* isolate) { v8::Local<v8::Object> GetModuleCache(v8::Isolate* isolate) {
auto context = isolate->GetCurrentContext(); auto context = isolate->GetCurrentContext();
mate::Dictionary global(isolate, context->Global()); gin_helper::Dictionary global(isolate, context->Global());
v8::Local<v8::Value> cache; v8::Local<v8::Value> cache;
if (!global.GetHidden(kModuleCacheKey, &cache)) { if (!global.GetHidden(kModuleCacheKey, &cache)) {

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

@ -19,9 +19,9 @@
#include "content/public/renderer/render_thread.h" #include "content/public/renderer/render_thread.h"
#include "content/public/renderer/render_view.h" #include "content/public/renderer/render_view.h"
#include "electron/buildflags/buildflags.h" #include "electron/buildflags/buildflags.h"
#include "native_mate/dictionary.h"
#include "printing/buildflags/buildflags.h" #include "printing/buildflags/buildflags.h"
#include "shell/common/color_util.h" #include "shell/common/color_util.h"
#include "shell/common/gin_helper/dictionary.h"
#include "shell/common/native_mate_converters/value_converter.h" #include "shell/common/native_mate_converters/value_converter.h"
#include "shell/common/options_switches.h" #include "shell/common/options_switches.h"
#include "shell/renderer/atom_autofill_agent.h" #include "shell/renderer/atom_autofill_agent.h"
@ -114,7 +114,7 @@ void RendererClientBase::DidCreateScriptContext(
// global.setHidden("contextId", `${processHostId}-${++next_context_id_}`) // global.setHidden("contextId", `${processHostId}-${++next_context_id_}`)
auto context_id = base::StringPrintf( auto context_id = base::StringPrintf(
"%s-%" PRId64, renderer_client_id_.c_str(), ++next_context_id_); "%s-%" PRId64, renderer_client_id_.c_str(), ++next_context_id_);
mate::Dictionary global(context->GetIsolate(), context->Global()); gin_helper::Dictionary global(context->GetIsolate(), context->Global());
global.SetHidden("contextId", context_id); global.SetHidden("contextId", context_id);
auto* command_line = base::CommandLine::ForCurrentProcess(); auto* command_line = base::CommandLine::ForCurrentProcess();
@ -125,9 +125,7 @@ void RendererClientBase::DidCreateScriptContext(
void RendererClientBase::AddRenderBindings( void RendererClientBase::AddRenderBindings(
v8::Isolate* isolate, v8::Isolate* isolate,
v8::Local<v8::Object> binding_object) { v8::Local<v8::Object> binding_object) {}
mate::Dictionary dict(isolate, binding_object);
}
void RendererClientBase::RenderThreadStarted() { void RendererClientBase::RenderThreadStarted() {
auto* command_line = base::CommandLine::ForCurrentProcess(); auto* command_line = base::CommandLine::ForCurrentProcess();
@ -380,14 +378,14 @@ bool RendererClientBase::IsWebViewFrame(
if (render_frame->IsMainFrame()) if (render_frame->IsMainFrame())
return false; return false;
mate::Dictionary window_dict( gin::Dictionary window_dict(
isolate, GetContext(render_frame->GetWebFrame(), isolate)->Global()); isolate, GetContext(render_frame->GetWebFrame(), isolate)->Global());
v8::Local<v8::Object> frame_element; v8::Local<v8::Object> frame_element;
if (!window_dict.Get("frameElement", &frame_element)) if (!window_dict.Get("frameElement", &frame_element))
return false; return false;
mate::Dictionary frame_element_dict(isolate, frame_element); gin_helper::Dictionary frame_element_dict(isolate, frame_element);
v8::Local<v8::Object> internal; v8::Local<v8::Object> internal;
if (!frame_element_dict.GetHidden("internal", &internal)) if (!frame_element_dict.GetHidden("internal", &internal))