| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/extensions/extension_host_mac.h" | 5 #include "chrome/browser/extensions/extension_host_mac.h" |
| 6 | 6 |
| 7 #import "chrome/browser/ui/cocoa/chrome_event_processing_window.h" | 7 #import "chrome/browser/ui/cocoa/chrome_event_processing_window.h" |
| 8 #import "chrome/browser/ui/cocoa/extensions/extension_popup_controller.h" | 8 #import "chrome/browser/ui/cocoa/extensions/extension_popup_controller.h" |
| 9 #import "chrome/browser/ui/cocoa/info_bubble_window.h" | 9 #import "chrome/browser/ui/cocoa/info_bubble_window.h" |
| 10 #include "chrome/common/view_type.h" | 10 #include "chrome/common/view_type.h" |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 void ExtensionHostMac::UnhandledKeyboardEvent( | 28 void ExtensionHostMac::UnhandledKeyboardEvent( |
| 29 content::WebContents* source, | 29 content::WebContents* source, |
| 30 const NativeWebKeyboardEvent& event) { | 30 const NativeWebKeyboardEvent& event) { |
| 31 if (event.skip_in_browser || event.type == NativeWebKeyboardEvent::Char || | 31 if (event.skip_in_browser || event.type == NativeWebKeyboardEvent::Char || |
| 32 extension_host_type() != chrome::VIEW_TYPE_EXTENSION_POPUP) { | 32 extension_host_type() != chrome::VIEW_TYPE_EXTENSION_POPUP) { |
| 33 return; | 33 return; |
| 34 } | 34 } |
| 35 | 35 |
| 36 ChromeEventProcessingWindow* event_window = | 36 ChromeEventProcessingWindow* event_window = |
| 37 static_cast<ChromeEventProcessingWindow*>([view()->native_view() window]); | 37 static_cast<ChromeEventProcessingWindow*>( |
| 38 [GetExtensionView()->GetNativeView() window]); |
| 38 DCHECK([event_window isKindOfClass:[ChromeEventProcessingWindow class]]); | 39 DCHECK([event_window isKindOfClass:[ChromeEventProcessingWindow class]]); |
| 39 [event_window redispatchKeyEvent:event.os_event]; | 40 [event_window redispatchKeyEvent:event.os_event]; |
| 40 } | 41 } |
| 41 | 42 |
| 42 } // namespace extensions | 43 } // namespace extensions |
| OLD | NEW |