2020-03-30 01:32:02 +00:00
|
|
|
// 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.
|
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_API_UI_EVENT_H_
|
|
|
|
#define ELECTRON_SHELL_BROWSER_API_UI_EVENT_H_
|
2020-03-30 01:32:02 +00:00
|
|
|
|
|
|
|
namespace v8 {
|
|
|
|
class Object;
|
|
|
|
template <typename T>
|
|
|
|
class Local;
|
|
|
|
} // namespace v8
|
|
|
|
|
2022-06-29 19:55:47 +00:00
|
|
|
namespace electron::api {
|
2020-03-30 01:32:02 +00:00
|
|
|
|
|
|
|
v8::Local<v8::Object> CreateEventFromFlags(int flags);
|
|
|
|
|
2022-06-29 19:55:47 +00:00
|
|
|
} // namespace electron::api
|
2020-03-30 01:32:02 +00:00
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#endif // ELECTRON_SHELL_BROWSER_API_UI_EVENT_H_
|