Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1862)

Unified Diff: chrome/browser/ui/cocoa/accelerator_utils_cocoa.mm

Issue 13044014: Make sure manifest specified shortcut for Extension Command can not override the built-in shortcuts. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix for ChromeOS (ash) Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/cocoa/accelerator_utils_cocoa.mm
diff --git a/chrome/browser/ui/cocoa/accelerator_utils_cocoa.mm b/chrome/browser/ui/cocoa/accelerator_utils_cocoa.mm
new file mode 100644
index 0000000000000000000000000000000000000000..d2de3369adf0affb9083e5a2536df76f998b21d0
--- /dev/null
+++ b/chrome/browser/ui/cocoa/accelerator_utils_cocoa.mm
@@ -0,0 +1,67 @@
+// Copyright (c) 2013 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.
+
+#include "chrome/browser/profiles/profile.h"
+#include "chrome/browser/ui/cocoa/accelerators_cocoa.h"
+#import "chrome/browser/ui/cocoa/browser_window_utils.h"
+#include "content/public/browser/native_web_keyboard_event.h"
+#include "ui/base/accelerators/accelerator.h"
+#import "ui/base/accelerators/platform_accelerator_cocoa.h"
+#import "ui/base/keycodes/keyboard_code_conversion_mac.h"
+
+namespace chrome {
+
+bool IsChromeAccelerator(const ui::Accelerator& accelerator, Profile* profile) {
+ // The |accelerator| passed in contains a Windows key code but no platform
+ // accelerator info. The Accelerator list is the opposite: It has accelerators
+ // that have key_code() == VKEY_UNKNOWN but they contain a platform
+ // accelerator. We find common ground by converting the passed in Windows key
+ // code to a character and use that when comparing against the Accelerator
+ // list.
+ unichar character;
+ unichar characterIgnoringModifiers;
+ ui::MacKeyCodeForWindowsKeyCode(accelerator.key_code(),
+ 0,
+ &character,
+ &characterIgnoringModifiers);
+ NSString* characters =
+ [[[NSString alloc] initWithCharacters:&character length:1] autorelease];
+
+ NSUInteger modifiers =
+ (accelerator.IsCtrlDown() ? NSControlKeyMask : 0) |
+ (accelerator.IsCmdDown() ? NSCommandKeyMask : 0) |
+ (accelerator.IsAltDown() ? NSAlternateKeyMask : 0) |
+ (accelerator.IsShiftDown() ? NSShiftKeyMask : 0);
+
+ NSEvent* event = [NSEvent keyEventWithType:NSKeyDown
+ location:NSZeroPoint
+ modifierFlags:modifiers
+ timestamp:0
+ windowNumber:0
+ context:nil
+ characters:characters
+ charactersIgnoringModifiers:characters
+ isARepeat:NO
+ keyCode:accelerator.key_code()];
+
+ content::NativeWebKeyboardEvent keyboard_event(event);
+ int id = [BrowserWindowUtils getCommandId:keyboard_event];
+ if (id != -1)
+ return true;
+
+ AcceleratorsCocoa* accelerators = AcceleratorsCocoa::GetInstance();
+ for (AcceleratorsCocoa::const_iterator iter = accelerators->begin();
+ iter != accelerators->end(); ++iter) {
Nico 2013/04/16 21:44:54 I don't know if the secondary shortcuts should win
Finnur 2013/04/17 14:28:07 Good point. We should probably be consistent here.
+ const ui::PlatformAcceleratorCocoa* platform_accelerator =
+ static_cast<const ui::PlatformAcceleratorCocoa*>(
+ iter->second.platform_accelerator());
+ if ([characters isEqualToString:platform_accelerator->characters()] &&
+ modifiers == platform_accelerator->modifier_mask())
+ return true;
+ }
+
+ return false;
+}
+
+} // namespace chrome

Powered by Google App Engine
This is Rietveld 408576698