Merge "Expose more Download Manager APIs."

This commit is contained in:
Jean-Baptiste Queru
2010-02-16 14:02:31 -08:00
committed by Android (Google) Code Review
2 changed files with 55 additions and 4 deletions

View File

@@ -296,21 +296,24 @@ public final class Downloads {
}
/**
* @pending
* The column for the id in the Cursor returned by
* {@link #getProgressCursor()}
*/
public static final int getProgressColumnId() {
return 0;
}
/**
* @pending
* The column for the current byte count in the Cursor returned by
* {@link #getProgressCursor()}
*/
public static final int getProgressColumnCurrentBytes() {
return 1;
}
/**
* @pending
* The column for the total byte count in the Cursor returned by
* {@link #getProgressCursor()}
*/
public static final int getProgressColumnTotalBytes() {
return 2;
@@ -324,7 +327,7 @@ public final class Downloads {
};
/**
* @pending
* Returns a Cursor representing the progress of the download identified by the ID.
*/
public static final Cursor getProgressCursor(Context context, long id) {
Uri downloadUri = Uri.withAppendedPath(android.provider.Downloads.Impl.CONTENT_URI,