chromium/third_party/blink/renderer/core/input/keyboard_shortcut_recorder.h

// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_INPUT_KEYBOARD_SHORTCUT_RECORDER_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_INPUT_KEYBOARD_SHORTCUT_RECORDER_H_

#include "build/build_config.h"

namespace blink {
// Used for histograms. See PhysicalKeyboardShortcut in
// tools/metrics/histograms/enums.xml &
// content/public/android/java/src/org/chromium/content_public/browser/KeyboardShortcutRecorder.java
enum class KeyboardShortcut {};

#if BUILDFLAG(IS_ANDROID)
void RecordKeyboardShortcutForAndroid(const KeyboardShortcut keyboard_shortcut);
#endif  // BUILDFLAG(IS_ANDROID)

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_RENDERER_CORE_INPUT_KEYBOARD_SHORTCUT_RECORDER_H_