| Index: chrome/browser/renderer_host/render_widget_host_view_mac.mm
|
| ===================================================================
|
| --- chrome/browser/renderer_host/render_widget_host_view_mac.mm (revision 64127)
|
| +++ chrome/browser/renderer_host/render_widget_host_view_mac.mm (working copy)
|
| @@ -1667,6 +1667,16 @@
|
| // See http://crbug.com/47209
|
| [self cancelComposition];
|
|
|
| + NSNumber* direction = [NSNumber numberWithUnsignedInteger:
|
| + [[self window] keyViewSelectionDirection]];
|
| + NSDictionary* userInfo =
|
| + [NSDictionary dictionaryWithObject:direction
|
| + forKey:kSelectionDirection];
|
| + [[NSNotificationCenter defaultCenter]
|
| + postNotificationName:kViewDidBecomeFirstResponder
|
| + object:self
|
| + userInfo:userInfo];
|
| +
|
| return YES;
|
| }
|
|
|
|
|