#ifndef CHROME_BROWSER_EXTENSIONS_GLOBAL_SHORTCUT_LISTENER_OZONE_H_
#define CHROME_BROWSER_EXTENSIONS_GLOBAL_SHORTCUT_LISTENER_OZONE_H_
#include "chrome/browser/extensions/global_shortcut_listener.h"
namespace extensions {
class GlobalShortcutListenerOzone : public GlobalShortcutListener {
public:
GlobalShortcutListenerOzone();
virtual ~GlobalShortcutListenerOzone();
private:
virtual void StartListening() OVERRIDE;
virtual void StopListening() OVERRIDE;
virtual bool RegisterAcceleratorImpl(
const ui::Accelerator& accelerator) OVERRIDE;
virtual void UnregisterAcceleratorImpl(
const ui::Accelerator& accelerator) OVERRIDE;
bool is_listening_;
DISALLOW_COPY_AND_ASSIGN(GlobalShortcutListenerOzone);
};
}
#endif