Rename browser_util to browser_event_util (seee #3685)

Use more specific file naming. This change is a functional no-op.
This commit is contained in:
Marshall Greenblatt
2024-07-02 14:16:55 -04:00
parent bd57a40256
commit cd3f617171
7 changed files with 15 additions and 23 deletions

View File

@@ -7,8 +7,8 @@
#include <memory>
#include <optional>
#include "cef/libcef/browser/browser_event_util.h"
#include "cef/libcef/browser/browser_host_base.h"
#include "cef/libcef/browser/browser_util.h"
#include "cef/libcef/browser/chrome/views/chrome_browser_view.h"
#include "cef/libcef/browser/context.h"
#include "cef/libcef/browser/request_context_impl.h"
@@ -184,7 +184,7 @@ bool CefBrowserViewImpl::HandleKeyboardEvent(
// Give the CefWindowDelegate a chance to handle the event.
if (auto* window_impl = cef_window_impl()) {
CefKeyEvent cef_event;
if (browser_util::GetCefKeyEvent(event, cef_event) &&
if (GetCefKeyEvent(event, cef_event) &&
window_impl->OnKeyEvent(cef_event)) {
return true;
}