electron/shell/browser/api/electron_api_view.cc

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

61 lines
1.5 KiB
C++
Raw Normal View History

2018-05-07 05:52:25 +00:00
// Copyright (c) 2018 GitHub, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#include "shell/browser/api/electron_api_view.h"
2018-05-07 05:52:25 +00:00
#include "shell/common/gin_helper/dictionary.h"
#include "shell/common/gin_helper/object_template_builder.h"
#include "shell/common/node_includes.h"
2018-05-07 05:52:25 +00:00
2022-06-29 19:55:47 +00:00
namespace electron::api {
2018-05-07 05:52:25 +00:00
View::View(views::View* view) : view_(view) {
2018-05-07 05:52:25 +00:00
view_->set_owned_by_client();
}
View::View() : View(new views::View()) {}
2018-05-07 07:04:33 +00:00
View::~View() {
if (delete_view_)
delete view_;
}
2018-05-07 05:52:25 +00:00
// static
gin_helper::WrappableBase* View::New(gin::Arguments* args) {
auto* view = new View();
view->InitWithArgs(args);
return view;
2018-05-07 05:52:25 +00:00
}
// static
void View::BuildPrototype(v8::Isolate* isolate,
2018-05-22 08:08:27 +00:00
v8::Local<v8::FunctionTemplate> prototype) {
prototype->SetClassName(gin::StringToV8(isolate, "View"));
2018-05-22 08:08:27 +00:00
}
2018-05-07 05:52:25 +00:00
2022-06-29 19:55:47 +00:00
} // namespace electron::api
2018-05-07 05:52:25 +00:00
namespace {
using electron::api::View;
void Initialize(v8::Local<v8::Object> exports,
v8::Local<v8::Value> unused,
v8::Local<v8::Context> context,
void* priv) {
v8::Isolate* isolate = context->GetIsolate();
View::SetConstructor(isolate, base::BindRepeating(&View::New));
2018-05-07 05:52:25 +00:00
gin_helper::Dictionary constructor(
isolate,
View::GetConstructor(isolate)->GetFunction(context).ToLocalChecked());
2018-05-07 05:52:25 +00:00
gin_helper::Dictionary dict(isolate, exports);
2018-05-07 05:52:25 +00:00
dict.Set("View", constructor);
}
} // namespace
NODE_LINKED_BINDING_CONTEXT_AWARE(electron_browser_view, Initialize)