/**@class android.provider.BrowserContract @extends java.lang.Object <p> The contract between the browser provider and applications. Contains the definition for the supported URIS and columns. </p> <h3>Overview</h3> <p> BrowserContract defines an database of browser-related information which are bookmarks, history, images and the mapping between the image and URL. </p> @hide */ var BrowserContract = { /**The authority for the browser provider */ AUTHORITY : "com.android.browser", /**A content:// style uri to the authority for the browser provider */ AUTHORITY_URI : "null", /** An optional insert, update or delete URI parameter that allows the caller to specify that it is a sync adapter. The default value is false. If true the dirty flag is not automatically set and the "syncToNetwork" parameter is set to false when calling {@link ContentResolver#notifyChange(android.net.Uri, android.database.ContentObserver, boolean)}. @hide */ CALLER_IS_SYNCADAPTER : "caller_is_syncadapter", /** A parameter for use when querying any table that allows specifying a limit on the number of rows returned. @hide */ PARAM_LIMIT : "limit", };