Home | History | Annotate | Download | only in data

Lines Matching refs:ContentType

24 import com.android.messaging.util.ContentType;
57 protected PendingAttachmentData(final String caption, final String contentType,
60 super(caption, contentType, sourceUri, width, height, onlySingleAttachment);
68 public static PendingAttachmentData createPendingAttachmentData(final String contentType,
70 return createPendingAttachmentData(null, contentType, sourceUri, UNSPECIFIED_SIZE,
75 final String contentType, final Uri sourceUri, final int width, final int height) {
76 Assert.isTrue(ContentType.isMediaType(contentType));
77 return new PendingAttachmentData(caption, contentType, sourceUri, width, height,
82 final String contentType, final Uri sourceUri, final int width, final int height,
84 Assert.isTrue(ContentType.isMediaType(contentType));
85 return new PendingAttachmentData(caption, contentType, sourceUri, width, height,