Index: content/browser/renderer_host/render_widget_host_impl.cc |
diff --git a/content/browser/renderer_host/render_widget_host_impl.cc b/content/browser/renderer_host/render_widget_host_impl.cc |
index f9fb437cd7b3c0f6b0ca87d6c36e83b052fe327b..c3a4b4a03398b9ca1dd4e85d3980a0f1d50366b8 100644 |
--- a/content/browser/renderer_host/render_widget_host_impl.cc |
+++ b/content/browser/renderer_host/render_widget_host_impl.cc |
@@ -1735,14 +1735,10 @@ void RenderWidgetHostImpl::OnShowDisambiguationPopup( |
SkBitmap zoomed_bitmap; |
zoomed_bitmap.installPixels(info, bitmap->pixels(), info.minRowBytes()); |
-#if defined(OS_ANDROID) || defined(TOOLKIT_VIEWS) |
// Note that |rect| is in coordinates of pixels relative to the window origin. |
// Aura-based systems will want to convert this to DIPs. |
if (view_) |
view_->ShowDisambiguationPopup(rect_pixels, zoomed_bitmap); |
-#else |
- NOTIMPLEMENTED(); |
-#endif |
// It is assumed that the disambiguation popup will make a copy of the |
// provided zoomed image, so we delete this one. |