am d32f9422: am 0dde41fb: Merge "Fix 2610961 Unhide broadcast intents that are sent when sdcard gets mounted/unmounted." into froyo

Merge commit 'd32f942280cc4390ab853321557eef06292b300e' into kraken

* commit 'd32f942280cc4390ab853321557eef06292b300e':
  Fix 2610961
This commit is contained in:
Suchi Amalapurapu
2010-04-20 15:14:41 -07:00
committed by Android Git Automerger
2 changed files with 44 additions and 4 deletions

View File

@@ -41399,6 +41399,28 @@
visibility="public" visibility="public"
> >
</field> </field>
<field name="ACTION_EXTERNAL_APPLICATIONS_AVAILABLE"
type="java.lang.String"
transient="false"
volatile="false"
value="&quot;android.intent.action.EXTERNAL_APPLICATIONS_AVAILABLE&quot;"
static="true"
final="true"
deprecated="not deprecated"
visibility="public"
>
</field>
<field name="ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE"
type="java.lang.String"
transient="false"
volatile="false"
value="&quot;android.intent.action.EXTERNAL_APPLICATIONS_UNAVAILABLE&quot;"
static="true"
final="true"
deprecated="not deprecated"
visibility="public"
>
</field>
<field name="ACTION_FACTORY_TEST" <field name="ACTION_FACTORY_TEST"
type="java.lang.String" type="java.lang.String"
transient="false" transient="false"
@@ -42366,6 +42388,28 @@
visibility="public" visibility="public"
> >
</field> </field>
<field name="EXTRA_CHANGED_PACKAGE_LIST"
type="java.lang.String"
transient="false"
volatile="false"
value="&quot;android.intent.extra.changed_package_list&quot;"
static="true"
final="true"
deprecated="not deprecated"
visibility="public"
>
</field>
<field name="EXTRA_CHANGED_UID_LIST"
type="java.lang.String"
transient="false"
volatile="false"
value="&quot;android.intent.extra.changed_uid_list&quot;"
static="true"
final="true"
deprecated="not deprecated"
visibility="public"
>
</field>
<field name="EXTRA_DATA_REMOVED" <field name="EXTRA_DATA_REMOVED"
type="java.lang.String" type="java.lang.String"
transient="false" transient="false"

View File

@@ -1395,7 +1395,6 @@ public class Intent implements Parcelable, Cloneable {
* *
* <p class="note">This is a protected intent that can only be sent * <p class="note">This is a protected intent that can only be sent
* by the system. * by the system.
* @hide
*/ */
@SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
public static final String ACTION_EXTERNAL_APPLICATIONS_AVAILABLE = public static final String ACTION_EXTERNAL_APPLICATIONS_AVAILABLE =
@@ -1420,7 +1419,6 @@ public class Intent implements Parcelable, Cloneable {
* *
* <p class="note">This is a protected intent that can only be sent * <p class="note">This is a protected intent that can only be sent
* by the system. * by the system.
* @hide
*/ */
@SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
public static final String ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE = public static final String ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE =
@@ -2243,7 +2241,6 @@ public class Intent implements Parcelable, Cloneable {
* {@link android.content.Intent#ACTION_EXTERNAL_APPLICATIONS_AVAILABLE}, * {@link android.content.Intent#ACTION_EXTERNAL_APPLICATIONS_AVAILABLE},
* {@link android.content.Intent#ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE} * {@link android.content.Intent#ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE}
* and contains a string array of all of the components that have changed. * and contains a string array of all of the components that have changed.
* @hide
*/ */
public static final String EXTRA_CHANGED_PACKAGE_LIST = public static final String EXTRA_CHANGED_PACKAGE_LIST =
"android.intent.extra.changed_package_list"; "android.intent.extra.changed_package_list";
@@ -2254,7 +2251,6 @@ public class Intent implements Parcelable, Cloneable {
* {@link android.content.Intent#ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE} * {@link android.content.Intent#ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE}
* and contains an integer array of uids of all of the components * and contains an integer array of uids of all of the components
* that have changed. * that have changed.
* @hide
*/ */
public static final String EXTRA_CHANGED_UID_LIST = public static final String EXTRA_CHANGED_UID_LIST =
"android.intent.extra.changed_uid_list"; "android.intent.extra.changed_uid_list";