From 4bfd6f0fe52a6e839f725605ae6b3e175224e857 Mon Sep 17 00:00:00 2001 From: John Reck Date: Thu, 9 Jun 2011 16:59:40 -0700 Subject: Expose hook for crash backup Allows browser to know when to update the crash state in response to a textfield's contents changing Change-Id: Idda7a2931f4c9ae01418b91bbabb1e237f118664 --- core/java/android/webkit/WebView.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'core/java/android/webkit/WebView.java') diff --git a/core/java/android/webkit/WebView.java b/core/java/android/webkit/WebView.java index 1014d7e..d3a9317 100644 --- a/core/java/android/webkit/WebView.java +++ b/core/java/android/webkit/WebView.java @@ -9023,8 +9023,9 @@ public class WebView extends AbsoluteLayout /** * Update our cache with updatedText. * @param updatedText The new text to put in our cache. + * @hide */ - /* package */ void updateCachedTextfield(String updatedText) { + protected void updateCachedTextfield(String updatedText) { // Also place our generation number so that when we look at the cache // we recognize that it is up to date. nativeUpdateCachedTextfield(updatedText, mTextGeneration); -- cgit v1.1