// 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" #include "shell/common/gin_helper/dictionary.h" #include "shell/common/gin_helper/object_template_builder.h" #include "shell/common/node_includes.h" namespace electron::api { View::View(views::View* view) : view_(view) { view_->set_owned_by_client(); } View::View() : View(new views::View()) {} View::~View() { if (delete_view_) delete view_; } // static gin_helper::WrappableBase* View::New(gin::Arguments* args) { auto* view = new View(); view->InitWithArgs(args); return view; } // static void View::BuildPrototype(v8::Isolate* isolate, v8::Local prototype) { prototype->SetClassName(gin::StringToV8(isolate, "View")); } } // namespace electron::api namespace { using electron::api::View; void Initialize(v8::Local exports, v8::Local unused, v8::Local context, void* priv) { v8::Isolate* isolate = context->GetIsolate(); View::SetConstructor(isolate, base::BindRepeating(&View::New)); gin_helper::Dictionary constructor( isolate, View::GetConstructor(isolate)->GetFunction(context).ToLocalChecked()); gin_helper::Dictionary dict(isolate, exports); dict.Set("View", constructor); } } // namespace NODE_LINKED_BINDING_CONTEXT_AWARE(electron_browser_view, Initialize)