Index: content/browser/renderer_host/render_view_host_impl.cc |
=================================================================== |
--- content/browser/renderer_host/render_view_host_impl.cc (revision 244508) |
+++ content/browser/renderer_host/render_view_host_impl.cc (working copy) |
@@ -119,7 +119,7 @@ |
} |
} |
-#if defined(OS_WIN) && defined(USE_AURA) |
+#if defined(OS_WIN) |
const int kVirtualKeyboardDisplayWaitTimeoutMs = 100; |
const int kMaxVirtualKeyboardDisplayRetries = 5; |
@@ -1777,7 +1777,7 @@ |
} |
void RenderViewHostImpl::OnFocusedNodeChanged(bool is_editable_node) { |
-#if defined(OS_WIN) && defined(USE_AURA) |
+#if defined(OS_WIN) |
if (!is_editable_node && virtual_keyboard_requested_) { |
virtual_keyboard_requested_ = false; |
BrowserThread::PostDelayedTask( |
@@ -2197,7 +2197,7 @@ |
} |
void RenderViewHostImpl::OnFocusedNodeTouched(bool editable) { |
-#if defined(OS_WIN) && defined(USE_AURA) |
+#if defined(OS_WIN) |
if (editable) { |
virtual_keyboard_requested_ = base::win::DisplayVirtualKeyboard(); |
} else { |