chromium/ui/ozone/platform/x11/x11_global_shortcut_listener_ozone.cc

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

#include "ui/ozone/platform/x11/x11_global_shortcut_listener_ozone.h"

namespace ui {

X11GlobalShortcutListenerOzone::X11GlobalShortcutListenerOzone(
    PlatformGlobalShortcutListenerDelegate* delegate)
    :{}

X11GlobalShortcutListenerOzone::~X11GlobalShortcutListenerOzone() {}

void X11GlobalShortcutListenerOzone::StartListening() {}

void X11GlobalShortcutListenerOzone::StopListening() {}

bool X11GlobalShortcutListenerOzone::RegisterAccelerator(KeyboardCode key_code,
                                                         bool is_alt_down,
                                                         bool is_ctrl_down,
                                                         bool is_shift_down) {}

void X11GlobalShortcutListenerOzone::UnregisterAccelerator(
    KeyboardCode key_code,
    bool is_alt_down,
    bool is_ctrl_down,
    bool is_shift_down) {}

void X11GlobalShortcutListenerOzone::OnKeyPressed(KeyboardCode key_code,
                                                  bool is_alt_down,
                                                  bool is_ctrl_down,
                                                  bool is_shift_down) {}

}  // namespace ui