Update to Chromium version 128.0.6613.0 (#1331488)

This commit is contained in:
Marshall Greenblatt
2024-07-29 13:09:20 -04:00
parent a6c00b2ff6
commit 446b7d6535
96 changed files with 798 additions and 877 deletions

View File

@@ -263,14 +263,14 @@ ui::KeyEvent CefBrowserPlatformDelegateNativeLinux::TranslateUiKeyEvent(
time_stamp);
}
ui::EventType type = ui::ET_UNKNOWN;
ui::EventType type = ui::EventType::kUnknown;
switch (key_event.type) {
case KEYEVENT_RAWKEYDOWN:
case KEYEVENT_KEYDOWN:
type = ui::ET_KEY_PRESSED;
type = ui::EventType::kKeyPressed;
break;
case KEYEVENT_KEYUP:
type = ui::ET_KEY_RELEASED;
type = ui::EventType::kKeyReleased;
break;
default:
DCHECK(false);