diff options
| author | 2009-08-24 23:56:49 -0700 | |
|---|---|---|
| committer | 2009-08-24 23:56:49 -0700 | |
| commit | 4804c3e23b0bb8e77b690df177ebd4d6fb949aa8 (patch) | |
| tree | 0ca39be2b189b0099532836ccbec6890e04599ae | |
| parent | f7eab4f78fe4bdb193a4f8caf2648d2cb3ef36ea (diff) | |
| parent | eb0098d8e89033b78017a9e0068e3ac7ca51c112 (diff) | |
Merge change 22564 into eclair
* changes:
Add an extra intent parameter for recording duration limit.
| -rw-r--r-- | core/java/android/provider/MediaStore.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/java/android/provider/MediaStore.java b/core/java/android/provider/MediaStore.java index 21e5865fef70..49b5bb19087a 100644 --- a/core/java/android/provider/MediaStore.java +++ b/core/java/android/provider/MediaStore.java @@ -164,6 +164,12 @@ public final class MediaStore public final static String EXTRA_SIZE_LIMIT = "android.intent.extra.sizeLimit"; /** + * Specify the maximum allowed recording duration in seconds. + * @hide + */ + public final static String EXTRA_DURATION_LIMIT = "android.intent.extra.durationLimit"; + + /** * The name of the Intent-extra used to indicate a content resolver Uri to be used to * store the requested image or video. */ |