// Copyright 2013 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_EXTENSIONS_GLOBAL_SHORTCUT_LISTENER_H_ #define CHROME_BROWSER_EXTENSIONS_GLOBAL_SHORTCUT_LISTENER_H_ #include <map> #include "ui/events/keycodes/keyboard_codes.h" namespace ui { class Accelerator; } namespace extensions { // Platform-neutral implementation of a class that keeps track of observers and // monitors keystrokes. It relays messages to the appropriate observer when a // global shortcut has been struck by the user. class GlobalShortcutListener { … }; } // namespace extensions #endif // CHROME_BROWSER_EXTENSIONS_GLOBAL_SHORTCUT_LISTENER_H_