chore: bump chromium to 94.0.4584.0 (main) (#30030)
Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: PatchUp <73610968+patchup[bot]@users.noreply.github.com> Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org> Co-authored-by: deepak1556 <hop2deep@gmail.com> Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> Co-authored-by: Samuel Attard <samuel.r.attard@gmail.com> Co-authored-by: Jeremy Rose <jeremya@chromium.org>
This commit is contained in:
parent
a6ab702ae4
commit
64ba8feb93
97 changed files with 531 additions and 553 deletions
|
@ -74,8 +74,12 @@ std::u16string MenuDelegate::GetLabel(int id) const {
|
|||
return adapter_->GetLabel(id);
|
||||
}
|
||||
|
||||
void MenuDelegate::GetLabelStyle(int id, LabelStyle* style) const {
|
||||
return adapter_->GetLabelStyle(id, style);
|
||||
const gfx::FontList* MenuDelegate::GetLabelFontList(int id) const {
|
||||
return adapter_->GetLabelFontList(id);
|
||||
}
|
||||
|
||||
absl::optional<SkColor> MenuDelegate::GetLabelColor(int id) const {
|
||||
return adapter_->GetLabelColor(id);
|
||||
}
|
||||
|
||||
bool MenuDelegate::IsCommandEnabled(int id) const {
|
||||
|
|
|
@ -47,7 +47,8 @@ class MenuDelegate : public views::MenuDelegate {
|
|||
const ui::Event& e) override;
|
||||
bool GetAccelerator(int id, ui::Accelerator* accelerator) const override;
|
||||
std::u16string GetLabel(int id) const override;
|
||||
void GetLabelStyle(int id, LabelStyle* style) const override;
|
||||
const gfx::FontList* GetLabelFontList(int id) const override;
|
||||
absl::optional<SkColor> GetLabelColor(int id) const override;
|
||||
bool IsCommandEnabled(int id) const override;
|
||||
bool IsCommandVisible(int id) const override;
|
||||
bool IsItemChecked(int id) const override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue