Commit 486805cd authored by noms's avatar noms Committed by Commit bot

[Mac] Allow using the arrow keys for tabbing in the avatar bubble.

BUG=414794

Review URL: https://codereview.chromium.org/589263002

Cr-Commit-Position: refs/heads/master@{#296288}
parent 08f0eac4
...@@ -1042,6 +1042,14 @@ class ActiveProfileObserverBridge : public AvatarMenuObserver, ...@@ -1042,6 +1042,14 @@ class ActiveProfileObserverBridge : public AvatarMenuObserver,
[super windowWillClose:notification]; [super windowWillClose:notification];
} }
- (void)moveDown:(id)sender {
[[self window] selectNextKeyView:self];
}
- (void)moveUp:(id)sender {
[[self window] selectPreviousKeyView:self];
}
- (void)cleanUpEmbeddedViewContents { - (void)cleanUpEmbeddedViewContents {
webContents_.reset(); webContents_.reset();
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment