| Index: content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
|
| ===================================================================
|
| --- content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java (revision 289886)
|
| +++ content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java (working copy)
|
| @@ -220,7 +220,7 @@
|
| * extractSmartClipData are available.
|
| */
|
| public interface SmartClipDataListener {
|
| - public void onSmartClipDataExtracted(String result, Rect cliprect);
|
| + public void onSmartClipDataExtracted(String text, String html, Rect clipRect);
|
| }
|
|
|
| private final Context mContext;
|
| @@ -3100,9 +3100,9 @@
|
| }
|
|
|
| @CalledByNative
|
| - private void onSmartClipDataExtracted(String result, Rect cliprect) {
|
| + private void onSmartClipDataExtracted(String text, String html, Rect clipRect) {
|
| if (mSmartClipDataListener != null ) {
|
| - mSmartClipDataListener.onSmartClipDataExtracted(result, cliprect);
|
| + mSmartClipDataListener.onSmartClipDataExtracted(text, html, clipRect);
|
| }
|
| }
|
|
|
|
|