| Index: content/public/android/java/src/org/chromium/content/browser/ContentView.java
|
| ===================================================================
|
| --- content/public/android/java/src/org/chromium/content/browser/ContentView.java (revision 289886)
|
| +++ content/public/android/java/src/org/chromium/content/browser/ContentView.java (working copy)
|
| @@ -267,12 +267,13 @@
|
| 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);
|
|
|