Index: content/public/android/java/src/org/chromium/content/browser/ContentView.java |
diff --git a/content/public/android/java/src/org/chromium/content/browser/ContentView.java b/content/public/android/java/src/org/chromium/content/browser/ContentView.java |
index ac54c16427643e9dac5981c6190ce6c08be2d646..0bc4e3985e6e3df2a58f0a008e16fad1db0edc31 100644 |
--- a/content/public/android/java/src/org/chromium/content/browser/ContentView.java |
+++ b/content/public/android/java/src/org/chromium/content/browser/ContentView.java |
@@ -267,12 +267,13 @@ public class ContentView extends FrameLayout |
return; |
} |
mContentViewCore.setSmartClipDataListener(new ContentViewCore.SmartClipDataListener() { |
- public void onSmartClipDataExtracted(String text, Rect clipRect) { |
+ public void onSmartClipDataExtracted(String text, String html, Rect clipRect) { |
Bundle bundle = new Bundle(); |
bundle.putString("url", mContentViewCore.getWebContents().getVisibleUrl()); |
bundle.putString("title", mContentViewCore.getWebContents().getTitle()); |
- bundle.putParcelable("area", clipRect); |
+ bundle.putParcelable("rect", clipRect); |
bundle.putString("text", text); |
+ bundle.putString("html", html); |
try { |
Message msg = Message.obtain(resultHandler, 0); |
msg.setData(bundle); |