commit | 30e0ef42f9239cbf68a06361f18eddd097e1631d | [log] [tgz] |
---|---|---|
author | Leon Clarke <leonclarke@google.com> | Fri Jul 16 15:31:04 2010 +0100 |
committer | Leon Clarke <leonclarke@google.com> | Mon Jul 19 14:38:35 2010 +0100 |
tree | 2508c402bff398f85bda01a9a257803f9510337a | |
parent | 5dbfdf9928b782c9325864ed1e8dd0ff22ebc286 [diff] [blame] |
onSelectionStart and onSelectionDone now take a WebView http://b/issue?id=2847546 Change-Id: I7f1087a241ba7927561c72dfad40747c048bfba5
diff --git a/src/com/android/browser/Tab.java b/src/com/android/browser/Tab.java index a313651..ebbb055 100644 --- a/src/com/android/browser/Tab.java +++ b/src/com/android/browser/Tab.java
@@ -1041,12 +1041,12 @@ } @Override - public void onSelectionDone() { + public void onSelectionDone(WebView view) { if (mInForeground) mActivity.closeDialogs(); } @Override - public void onSelectionStart() { + public void onSelectionStart(WebView view) { if (mInForeground) mActivity.showSelectDialog(); }