Index: content/renderer/render_view_impl_android.cc |
=================================================================== |
--- content/renderer/render_view_impl_android.cc (revision 289886) |
+++ content/renderer/render_view_impl_android.cc (working copy) |
@@ -66,10 +66,11 @@ |
void RenderViewImpl::OnExtractSmartClipData(const gfx::Rect& rect) { |
blink::WebString clip_text; |
+ blink::WebString clip_html; |
blink::WebRect clip_rect; |
- webview()->getSmartClipData(rect, clip_text, clip_rect); |
+ webview()->extractSmartClipData(rect, clip_text, clip_html, clip_rect); |
Send(new ViewHostMsg_SmartClipDataExtracted( |
- routing_id_, clip_text, clip_rect)); |
+ routing_id_, clip_text, clip_html, clip_rect)); |
} |
} // namespace content |