refactor: ginify Tray (#22822)

* refactor: ginify Tray

* lint

* improve argument parsing logic

* remove redundant imports from tray.js

* new Tray produces an instanceof Tray

* make Constructible generic

* lint

* clean up on exit
This commit is contained in:
Jeremy Apthorp 2020-03-29 18:32:02 -07:00 committed by GitHub
parent 76ae3b7ecb
commit a3e28788ce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 380 additions and 88 deletions

View file

@ -0,0 +1,22 @@
// Copyright (c) 2020 Slack Technologies, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#ifndef SHELL_BROWSER_API_UI_EVENT_H_
#define SHELL_BROWSER_API_UI_EVENT_H_
namespace v8 {
class Object;
template <typename T>
class Local;
} // namespace v8
namespace electron {
namespace api {
v8::Local<v8::Object> CreateEventFromFlags(int flags);
} // namespace api
} // namespace electron
#endif // SHELL_BROWSER_API_UI_EVENT_H_