blob: 99c0f2b2d89d2d6da99535f97caea4b6e2f7e207 [file] [log] [blame]
// Copyright 2025 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_GLIC_GLIC_HOTKEY_H_
#define CHROME_BROWSER_GLIC_GLIC_HOTKEY_H_
#include <string>
#include "build/build_config.h"
namespace glic {
// Util function shared by both the FRE and the Host for communicating the OS
// Hotkey to the web implementations.
std::string GetHotkeyString();
#if BUILDFLAG(IS_MAC)
// Used for the glic FRE on Mac, where the long form spelling of modifiers is
// used instead of the Mac-localized symbols.
std::string GetLongFormMacHotkeyString();
#endif
} // namespace glic
#endif // CHROME_BROWSER_GLIC_GLIC_HOTKEY_H_