blob: 05129d4cb13c7f3945c72d4f5ca449e2bfe67547 [file] [log] [blame]
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_COCOA_NSMENUITEM_ADDITIONS_H_
#define CHROME_BROWSER_UI_COCOA_NSMENUITEM_ADDITIONS_H_
#import <Cocoa/Cocoa.h>
@interface NSMenuItem(ChromeAdditions)
// Returns true exactly if the menu item would fire if it would be put into
// a menu and then |menu performKeyEquivalent:event| was called.
// This method always returns NO if the menu item is not enabled.
- (BOOL)cr_firesForKeyEvent:(NSEvent*)event;
@end
// Used by tests to set internal state without having to change global input
// source.
void SetIsInputSourceDvorakQwertyForTesting(bool is_dvorak_qwerty);
#endif // CHROME_BROWSER_UI_COCOA_NSMENUITEM_ADDITIONS_H_