Index: chrome/browser/ui/views/html_dialog_view.cc |
diff --git a/chrome/browser/ui/views/html_dialog_view.cc b/chrome/browser/ui/views/html_dialog_view.cc |
index 3b4c2167262a4a2df28d39ee15172b83e8680c70..1c1c75f64d584ab5e0aab6d475bbb13cc77f7349 100644 |
--- a/chrome/browser/ui/views/html_dialog_view.cc |
+++ b/chrome/browser/ui/views/html_dialog_view.cc |
@@ -207,7 +207,9 @@ void HtmlDialogView::MoveContents(TabContents* source, const gfx::Rect& pos) { |
// We don't handle global keyboard shortcuts here, but that's fine since |
// they're all browser-specific. (This may change in the future.) |
void HtmlDialogView::HandleKeyboardEvent(const NativeWebKeyboardEvent& event) { |
-#if defined(OS_WIN) |
+#if defined(USE_AURA) |
+ // TODO(saintlou): Need to provide some Aura handling. |
+#elif defined(OS_WIN) |
// Any unhandled keyboard/character messages should be defproced. |
// This allows stuff like F10, etc to work correctly. |
DefWindowProc(event.os_event.hwnd, event.os_event.message, |