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

 @hide
 @deprecated This class was intended to be used by Gears. Since Gears was
 deprecated, so is this class.
*/
var UrlInterceptRegistry = {

/**set the flag to control whether url intercept is enabled or disabled
@param {Boolean} disabled true to disable the cache
@hide 
@deprecated This class was intended to be used by Gears. Since Gears was
 deprecated, so is this class.
*/
setUrlInterceptDisabled : function(  ) {},

/**get the state of the url intercept, enabled or disabled
@return {Boolean} return if it is disabled
@hide 
@deprecated This class was intended to be used by Gears. Since Gears was
 deprecated, so is this class.
*/
urlInterceptDisabled : function(  ) {},

/**Register a new UrlInterceptHandler. This handler will be called
 before any that were previously registered.
@param {Object {UrlInterceptHandler}} handler The new UrlInterceptHandler object
@return {Boolean} true if the handler was not previously registered.
@hide 
@deprecated This class was intended to be used by Gears. Since Gears was
 deprecated, so is this class.
*/
registerHandler : function(  ) {},

/**Unregister a previously registered UrlInterceptHandler.
@param {Object {UrlInterceptHandler}} handler A previously registered UrlInterceptHandler.
@return {Boolean} true if the handler was found and removed from the list.
@hide 
@deprecated This class was intended to be used by Gears. Since Gears was
 deprecated, so is this class.
*/
unregisterHandler : function(  ) {},

/**Given an url, returns the CacheResult of the first
 UrlInterceptHandler interested, or null if none are.
@return {Object {android.webkit.CacheManager.CacheResult}} A CacheResult containing surrogate content.
@hide 
@deprecated This class was intended to be used by Gears. Since Gears was
 deprecated, so is this class.
*/
getSurrogate : function(  ) {},

/**Given an url, returns the PluginData of the first
 UrlInterceptHandler interested, or null if none are or if
 intercepts are disabled.
@return {Object {android.webkit.PluginData}} A PluginData instance containing surrogate content.
@hide 
@deprecated This class was intended to be used by Gears. Since Gears was
 deprecated, so is this class.
*/
getPluginData : function(  ) {},


};