/**@class android.provider.BrowserContract.Images
 implements android.provider.BrowserContract.ImageColumns

@extends java.lang.Object

 <p>
 Stores images for URLs.
 </p>
 <p>
 The rows in this table can not be updated since there might have multiple URLs mapping onto
 the same image. If you want to update a URL's image, you need to add the new image in this
 table, then update the mapping onto the added image.
 </p>
 <p>
 Every image should be at least associated with one URL, otherwise it will be removed after a
 while.
 </p>
*/
var Images = {

/** The content:// style URI for this table
*/
CONTENT_URI : "null",
/** The MIME type of {@link #CONTENT_URI} providing a directory of images.
*/
CONTENT_TYPE : "vnd.android.cursor.dir/images",
/** The MIME type of a {@link #CONTENT_URI} of a single image.
*/
CONTENT_ITEM_TYPE : "vnd.android.cursor.item/images",
/** Used in {@link android.provider.BrowserContract.Images#TYPE} column and indicats the row is a favicon.
*/
IMAGE_TYPE_FAVICON : "1",
/** Used in {@link android.provider.BrowserContract.Images#TYPE} column and indicats the row is a precomposed touch icon.
*/
IMAGE_TYPE_PRECOMPOSED_TOUCH_ICON : "2",
/** Used in {@link android.provider.BrowserContract.Images#TYPE} column and indicats the row is a touch icon.
*/
IMAGE_TYPE_TOUCH_ICON : "4",
/** The type of item in the table.
 <P>Type: INTEGER</P>
 <p>Allowed values are:</p>
 <p>
 <ul>
 <li>{@link #IMAGE_TYPE_FAVICON}</li>
 <li>{@link #IMAGE_TYPE_PRECOMPOSED_TOUCH_ICON}</li>
 <li>{@link #IMAGE_TYPE_TOUCH_ICON}</li>
 </ul>
 </p>
*/
TYPE : "type",
/** The image data.
 <p>Type: BLOB (image)</p>
*/
DATA : "data",
/** The URL the images came from.
 <P>Type: TEXT (URL)</P>
 @hide
*/
URL : "url_key",

};