/**@class android.webkit.WebViewDatabase
@extends java.lang.Object

 This class allows developers to determine whether any WebView used in the
 application has stored any of the following types of browsing data and
 to clear any such stored data for all WebViews in the application.
 <ul>
  <li>Username/password pairs for web forms</li>
  <li>HTTP authentication username/password pairs</li>
  <li>Data entered into text fields (e.g. for autocomplete suggestions)</li>
 </ul>
*/
var WebViewDatabase = {

/**
*/
getInstance : function(  ) {},

/**Gets whether there are any saved username/password pairs for web forms.
 Note that these are unrelated to HTTP authentication credentials.
@return {Boolean} true if there are any saved username/password pairs
@see WebView#savePassword
@see #clearUsernamePassworda
@deprecated Saving passwords in WebView will not be supported in future versions.
*/
hasUsernamePassword : function(  ) {},

/**Clears any saved username/password pairs for web forms.
 Note that these are unrelated to HTTP authentication credentials.
@see WebView#savePassword
@see #hasUsernamePassword
@deprecated Saving passwords in WebView will not be supported in future versions.
*/
clearUsernamePassword : function(  ) {},

/**Gets whether there are any saved credentials for HTTP authentication.
@return {Boolean} whether there are any saved credentials
@see WebView#getHttpAuthUsernamePassword
@see WebView#setHttpAuthUsernamePassword
@see #clearHttpAuthUsernamePassword
*/
hasHttpAuthUsernamePassword : function(  ) {},

/**Clears any saved credentials for HTTP authentication.
@see WebView#getHttpAuthUsernamePassword
@see WebView#setHttpAuthUsernamePassword
@see #hasHttpAuthUsernamePassword
*/
clearHttpAuthUsernamePassword : function(  ) {},

/**Gets whether there is any saved data for web forms.
@return {Boolean} whether there is any saved data for web forms
@see #clearFormData
*/
hasFormData : function(  ) {},

/**Clears any saved data for web forms.
@see #hasFormData
*/
clearFormData : function(  ) {},


};