mirror of
https://github.com/electron/electron.git
synced 2026-05-02 03:00:22 -04:00
* chore: backport cppgc cleanups Key fixes: - Replace `base::WeakPtrFactory` with `gin::WeakCellFactory` in MenuMac, MenuViews, and NetLog, since weak pointers to cppgc-managed objects must go through weak cells - Replace `v8::Global<v8::Value>` with `cppgc::Persistent<Menu>` for the menu reference in BaseWindow - Stop using `gin_helper::Handle<T>` with cppgc types; use raw `T*` and add a `static_assert` to prevent future misuse - Add proper `Trace()` overrides for Menu, MenuMac, MenuViews, and NetLog to ensure cppgc members are visited during garbage collection - Replace `SelfKeepAlive` prevent-GC mechanism in Menu with a `cppgc::Persistent` prevent-GC captured in `BindSelfToClosure` - Introduce `GC_PLUGIN_IGNORE` macro to suppress known-safe violations: mojo::Remote fields, ObjC bridging pointers, and intentional persistent self-references - Mark `ArgumentHolder` as `CPPGC_STACK_ALLOCATED()` in both Electron's and gin's function_template.h to silence raw-pointer-to-GC-type warnings * chore: fix build
47 lines
1.3 KiB
C++
47 lines
1.3 KiB
C++
// Copyright (c) 2014 GitHub, 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_ELECTRON_API_MENU_VIEWS_H_
|
|
#define ELECTRON_SHELL_BROWSER_API_ELECTRON_API_MENU_VIEWS_H_
|
|
|
|
#include <memory>
|
|
|
|
#include "base/containers/flat_map.h"
|
|
#include "gin/weak_cell.h"
|
|
#include "shell/browser/api/electron_api_menu.h"
|
|
#include "ui/views/controls/menu/menu_runner.h"
|
|
|
|
namespace electron::api {
|
|
|
|
class MenuViews : public Menu {
|
|
public:
|
|
explicit MenuViews(gin::Arguments* args);
|
|
~MenuViews() override;
|
|
|
|
void Trace(cppgc::Visitor*) const override;
|
|
|
|
protected:
|
|
// Menu
|
|
void PopupAt(BaseWindow* window,
|
|
std::optional<WebFrameMain*> frame,
|
|
int x,
|
|
int y,
|
|
int positioning_item,
|
|
ui::mojom::MenuSourceType source_type,
|
|
base::OnceClosure callback) override;
|
|
void ClosePopupAt(int32_t window_id) override;
|
|
|
|
private:
|
|
void OnClosed(int32_t window_id, base::OnceClosure callback);
|
|
|
|
// window ID -> open context menu
|
|
base::flat_map<int32_t, std::unique_ptr<views::MenuRunner>> menu_runners_;
|
|
|
|
gin::WeakCellFactory<MenuViews> weak_cell_factory_{this};
|
|
};
|
|
|
|
} // namespace electron::api
|
|
|
|
#endif // ELECTRON_SHELL_BROWSER_API_ELECTRON_API_MENU_VIEWS_H_
|