diff options
| author | Dianne Hackborn <hackbod@google.com> | 2009-08-31 21:31:47 -0700 |
|---|---|---|
| committer | Dianne Hackborn <hackbod@google.com> | 2009-09-01 11:16:25 -0700 |
| commit | 3025ef332c29e255388f74b2afefe05f64bce07c (patch) | |
| tree | b7982d9ebe8a578b5b439c564c014a9af8be952f /api | |
| parent | d9942b5cb1662638bb6fb57c12a06976e3c34651 (diff) | |
| download | frameworks_base-3025ef332c29e255388f74b2afefe05f64bce07c.zip frameworks_base-3025ef332c29e255388f74b2afefe05f64bce07c.tar.gz frameworks_base-3025ef332c29e255388f74b2afefe05f64bce07c.tar.bz2 | |
Various infrastructure to support a running services UI.
Some of this is temporary (in particular the two approaches for getting
process memory, one working but horrible, the other not working but
preferred) until I figure out the best way to do it.
Change-Id: I8c8f25062d481fcea22a47d459b083d2fd8a5040
Diffstat (limited to 'api')
| -rw-r--r-- | api/current.xml | 115 |
1 files changed, 115 insertions, 0 deletions
diff --git a/api/current.xml b/api/current.xml index 7e6c2df..46dfd89 100644 --- a/api/current.xml +++ b/api/current.xml @@ -18039,6 +18039,50 @@ visibility="public" > </field> +<field name="FLAG_FOREGROUND" + type="int" + transient="false" + volatile="false" + value="2" + static="true" + final="true" + deprecated="not deprecated" + visibility="public" +> +</field> +<field name="FLAG_PERSISTENT_PROCESS" + type="int" + transient="false" + volatile="false" + value="8" + static="true" + final="true" + deprecated="not deprecated" + visibility="public" +> +</field> +<field name="FLAG_STARTED" + type="int" + transient="false" + volatile="false" + value="1" + static="true" + final="true" + deprecated="not deprecated" + visibility="public" +> +</field> +<field name="FLAG_SYSTEM_PROCESS" + type="int" + transient="false" + volatile="false" + value="4" + static="true" + final="true" + deprecated="not deprecated" + visibility="public" +> +</field> <field name="activeSince" type="long" transient="false" @@ -18069,6 +18113,16 @@ visibility="public" > </field> +<field name="flags" + type="int" + transient="false" + volatile="false" + static="false" + final="false" + deprecated="not deprecated" + visibility="public" +> +</field> <field name="foreground" type="boolean" transient="false" @@ -18139,6 +18193,16 @@ visibility="public" > </field> +<field name="uid" + type="int" + transient="false" + volatile="false" + static="false" + final="false" + deprecated="not deprecated" + visibility="public" +> +</field> </class> <class name="ActivityManager.RunningTaskInfo" extends="java.lang.Object" @@ -97544,6 +97608,8 @@ deprecated="not deprecated" visibility="public" > +<implements name="android.os.Parcelable"> +</implements> <constructor name="Debug.MemoryInfo" type="android.os.Debug.MemoryInfo" static="false" @@ -97552,6 +97618,55 @@ visibility="public" > </constructor> +<method name="describeContents" + return="int" + abstract="false" + native="false" + synchronized="false" + static="false" + final="false" + deprecated="not deprecated" + visibility="public" +> +</method> +<method name="readFromParcel" + return="void" + abstract="false" + native="false" + synchronized="false" + static="false" + final="false" + deprecated="not deprecated" + visibility="public" +> +<parameter name="source" type="android.os.Parcel"> +</parameter> +</method> +<method name="writeToParcel" + return="void" + abstract="false" + native="false" + synchronized="false" + static="false" + final="false" + deprecated="not deprecated" + visibility="public" +> +<parameter name="dest" type="android.os.Parcel"> +</parameter> +<parameter name="flags" type="int"> +</parameter> +</method> +<field name="CREATOR" + type="android.os.Parcelable.Creator" + transient="false" + volatile="false" + static="true" + final="true" + deprecated="not deprecated" + visibility="public" +> +</field> <field name="dalvikPrivateDirty" type="int" transient="false" |
