Invite the user to set up AutoFill
If the user has not set up an AutoFill profile but has the
feature enabled and they start to fill out a form that we
have determined as "autofillable" then offer to take them
to the profile editor to set up their profile.
Change-Id: Ia44c7036ef616d4ea826e541471dd916262488f2
diff --git a/src/com/android/browser/WebViewController.java b/src/com/android/browser/WebViewController.java
index 8c99c58..eeeee18 100644
--- a/src/com/android/browser/WebViewController.java
+++ b/src/com/android/browser/WebViewController.java
@@ -22,6 +22,7 @@
import android.graphics.Bitmap;
import android.net.Uri;
import android.net.http.SslError;
+import android.os.Message;
import android.view.KeyEvent;
import android.view.View;
import android.webkit.HttpAuthHandler;
@@ -102,4 +103,6 @@
void closeTab(Tab tab);
+ void setupAutoFill(Message message);
+
}