electron/shell/browser/api/ui_event.h

22 lines
517 B
C++

// 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 ELECTRON_SHELL_BROWSER_API_UI_EVENT_H_
#define ELECTRON_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 // ELECTRON_SHELL_BROWSER_API_UI_EVENT_H_