blob: d15a1544aef3247e26689a15bdb7449e6cf481f1 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.app;
18
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080019import android.content.ComponentName;
20import android.content.ContentProviderNative;
21import android.content.IContentProvider;
22import android.content.Intent;
23import android.content.IntentFilter;
24import android.content.pm.ConfigurationInfo;
25import android.content.pm.IPackageDataObserver;
26import android.content.pm.ProviderInfo;
27import android.content.res.Configuration;
28import android.graphics.Bitmap;
29import android.net.Uri;
30import android.os.RemoteException;
31import android.os.IBinder;
32import android.os.IInterface;
33import android.os.Parcel;
34import android.os.Parcelable;
35import android.os.ParcelFileDescriptor;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080036import android.os.Bundle;
37
38import java.util.List;
39
40/**
41 * System private API for talking with the activity manager service. This
42 * provides calls from the application back to the activity manager.
43 *
44 * {@hide}
45 */
46public interface IActivityManager extends IInterface {
Dianne Hackborn95fc68f2009-05-19 18:37:45 -070047 /**
48 * Returned by startActivity() if the start request was canceled because
49 * app switches are temporarily canceled to ensure the user's last request
50 * (such as pressing home) is performed.
51 */
52 public static final int START_SWITCHES_CANCELED = 4;
53 /**
54 * Returned by startActivity() if an activity wasn't really started, but
55 * the given Intent was given to the existing top activity.
56 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080057 public static final int START_DELIVERED_TO_TOP = 3;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -070058 /**
59 * Returned by startActivity() if an activity wasn't really started, but
60 * a task was simply brought to the foreground.
61 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080062 public static final int START_TASK_TO_FRONT = 2;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -070063 /**
64 * Returned by startActivity() if the caller asked that the Intent not
65 * be executed if it is the recipient, and that is indeed the case.
66 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080067 public static final int START_RETURN_INTENT_TO_CALLER = 1;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -070068 /**
69 * Activity was started successfully as normal.
70 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080071 public static final int START_SUCCESS = 0;
72 public static final int START_INTENT_NOT_RESOLVED = -1;
73 public static final int START_CLASS_NOT_FOUND = -2;
74 public static final int START_FORWARD_AND_REQUEST_CONFLICT = -3;
75 public static final int START_PERMISSION_DENIED = -4;
76 public int startActivity(IApplicationThread caller,
77 Intent intent, String resolvedType, Uri[] grantedUriPermissions,
78 int grantedMode, IBinder resultTo, String resultWho, int requestCode,
79 boolean onlyIfNeeded, boolean debug) throws RemoteException;
80 public boolean startNextMatchingActivity(IBinder callingActivity,
81 Intent intent) throws RemoteException;
82 public boolean finishActivity(IBinder token, int code, Intent data)
83 throws RemoteException;
84 public void finishSubActivity(IBinder token, String resultWho, int requestCode) throws RemoteException;
85 public Intent registerReceiver(IApplicationThread caller,
86 IIntentReceiver receiver, IntentFilter filter,
87 String requiredPermission) throws RemoteException;
88 public void unregisterReceiver(IIntentReceiver receiver) throws RemoteException;
89 public static final int BROADCAST_SUCCESS = 0;
90 public static final int BROADCAST_STICKY_CANT_HAVE_PERMISSION = -1;
91 public int broadcastIntent(IApplicationThread caller, Intent intent,
92 String resolvedType, IIntentReceiver resultTo, int resultCode,
93 String resultData, Bundle map, String requiredPermission,
94 boolean serialized, boolean sticky) throws RemoteException;
95 public void unbroadcastIntent(IApplicationThread caller, Intent intent) throws RemoteException;
96 /* oneway */
97 public void finishReceiver(IBinder who, int resultCode, String resultData, Bundle map, boolean abortBroadcast) throws RemoteException;
98 public void setPersistent(IBinder token, boolean isPersistent) throws RemoteException;
99 public void attachApplication(IApplicationThread app) throws RemoteException;
100 /* oneway */
101 public void activityIdle(IBinder token) throws RemoteException;
102 public void activityPaused(IBinder token, Bundle state) throws RemoteException;
103 /* oneway */
104 public void activityStopped(IBinder token,
105 Bitmap thumbnail, CharSequence description) throws RemoteException;
106 /* oneway */
107 public void activityDestroyed(IBinder token) throws RemoteException;
108 public String getCallingPackage(IBinder token) throws RemoteException;
109 public ComponentName getCallingActivity(IBinder token) throws RemoteException;
110 public List getTasks(int maxNum, int flags,
111 IThumbnailReceiver receiver) throws RemoteException;
112 public List<ActivityManager.RecentTaskInfo> getRecentTasks(int maxNum,
113 int flags) throws RemoteException;
114 public List getServices(int maxNum, int flags) throws RemoteException;
115 public List<ActivityManager.ProcessErrorStateInfo> getProcessesInErrorState()
116 throws RemoteException;
117 public void moveTaskToFront(int task) throws RemoteException;
118 public void moveTaskToBack(int task) throws RemoteException;
119 public boolean moveActivityTaskToBack(IBinder token, boolean nonRoot) throws RemoteException;
120 public void moveTaskBackwards(int task) throws RemoteException;
121 public int getTaskForActivity(IBinder token, boolean onlyRoot) throws RemoteException;
122 public void finishOtherInstances(IBinder token, ComponentName className) throws RemoteException;
123 /* oneway */
124 public void reportThumbnail(IBinder token,
125 Bitmap thumbnail, CharSequence description) throws RemoteException;
126 public ContentProviderHolder getContentProvider(IApplicationThread caller,
127 String name) throws RemoteException;
128 public void removeContentProvider(IApplicationThread caller,
129 String name) throws RemoteException;
130 public void publishContentProviders(IApplicationThread caller,
131 List<ContentProviderHolder> providers) throws RemoteException;
132 public ComponentName startService(IApplicationThread caller, Intent service,
133 String resolvedType) throws RemoteException;
134 public int stopService(IApplicationThread caller, Intent service,
135 String resolvedType) throws RemoteException;
136 public boolean stopServiceToken(ComponentName className, IBinder token,
137 int startId) throws RemoteException;
138 public void setServiceForeground(ComponentName className, IBinder token,
139 boolean isForeground) throws RemoteException;
140 public int bindService(IApplicationThread caller, IBinder token,
141 Intent service, String resolvedType,
142 IServiceConnection connection, int flags) throws RemoteException;
143 public boolean unbindService(IServiceConnection connection) throws RemoteException;
144 public void publishService(IBinder token,
145 Intent intent, IBinder service) throws RemoteException;
146 public void unbindFinished(IBinder token, Intent service,
147 boolean doRebind) throws RemoteException;
148 /* oneway */
149 public void serviceDoneExecuting(IBinder token) throws RemoteException;
150 public IBinder peekService(Intent service, String resolvedType) throws RemoteException;
151
152 public boolean startInstrumentation(ComponentName className, String profileFile,
153 int flags, Bundle arguments, IInstrumentationWatcher watcher)
154 throws RemoteException;
155 public void finishInstrumentation(IApplicationThread target,
156 int resultCode, Bundle results) throws RemoteException;
157
158 public Configuration getConfiguration() throws RemoteException;
159 public void updateConfiguration(Configuration values) throws RemoteException;
160 public void setRequestedOrientation(IBinder token,
161 int requestedOrientation) throws RemoteException;
162 public int getRequestedOrientation(IBinder token) throws RemoteException;
163
164 public ComponentName getActivityClassForToken(IBinder token) throws RemoteException;
165 public String getPackageForToken(IBinder token) throws RemoteException;
166
167 public static final int INTENT_SENDER_BROADCAST = 1;
168 public static final int INTENT_SENDER_ACTIVITY = 2;
169 public static final int INTENT_SENDER_ACTIVITY_RESULT = 3;
170 public static final int INTENT_SENDER_SERVICE = 4;
171 public IIntentSender getIntentSender(int type,
172 String packageName, IBinder token, String resultWho,
173 int requestCode, Intent intent, String resolvedType, int flags) throws RemoteException;
174 public void cancelIntentSender(IIntentSender sender) throws RemoteException;
175 public boolean clearApplicationUserData(final String packageName,
176 final IPackageDataObserver observer) throws RemoteException;
177 public String getPackageForIntentSender(IIntentSender sender) throws RemoteException;
178
179 public void setProcessLimit(int max) throws RemoteException;
180 public int getProcessLimit() throws RemoteException;
181
182 public void setProcessForeground(IBinder token, int pid, boolean isForeground) throws RemoteException;
183
184 public int checkPermission(String permission, int pid, int uid)
185 throws RemoteException;
186
187 public int checkUriPermission(Uri uri, int pid, int uid, int mode)
188 throws RemoteException;
189 public void grantUriPermission(IApplicationThread caller, String targetPkg,
190 Uri uri, int mode) throws RemoteException;
191 public void revokeUriPermission(IApplicationThread caller, Uri uri,
192 int mode) throws RemoteException;
193
194 public void showWaitingForDebugger(IApplicationThread who, boolean waiting)
195 throws RemoteException;
196
197 public void getMemoryInfo(ActivityManager.MemoryInfo outInfo) throws RemoteException;
198
199 public void restartPackage(final String packageName) throws RemoteException;
200
201 // Note: probably don't want to allow applications access to these.
202 public void goingToSleep() throws RemoteException;
203 public void wakingUp() throws RemoteException;
204
205 public void unhandledBack() throws RemoteException;
206 public ParcelFileDescriptor openContentUri(Uri uri) throws RemoteException;
207 public void setDebugApp(
208 String packageName, boolean waitForDebugger, boolean persistent)
209 throws RemoteException;
210 public void setAlwaysFinish(boolean enabled) throws RemoteException;
211 public void setActivityWatcher(IActivityWatcher watcher)
212 throws RemoteException;
213
214 public void enterSafeMode() throws RemoteException;
215
216 public void noteWakeupAlarm(IIntentSender sender) throws RemoteException;
217
218 public boolean killPidsForMemory(int[] pids) throws RemoteException;
219
220 public void reportPss(IApplicationThread caller, int pss) throws RemoteException;
221
222 // Special low-level communication with activity manager.
223 public void startRunning(String pkg, String cls, String action,
224 String data) throws RemoteException;
225 public void systemReady() throws RemoteException;
226 // Returns 1 if the user wants to debug.
227 public int handleApplicationError(IBinder app,
228 int flags, /* 1 == can debug */
229 String tag, String shortMsg, String longMsg,
230 byte[] crashData) throws RemoteException;
231
232 /*
233 * This will deliver the specified signal to all the persistent processes. Currently only
234 * SIGUSR1 is delivered. All others are ignored.
235 */
236 public void signalPersistentProcesses(int signal) throws RemoteException;
237 // Retrieve running application processes in the system
238 public List<ActivityManager.RunningAppProcessInfo> getRunningAppProcesses()
239 throws RemoteException;
240 // Get device configuration
241 public ConfigurationInfo getDeviceConfigurationInfo() throws RemoteException;
242
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -0800243 // Turn on/off profiling in a particular process.
244 public boolean profileControl(String process, boolean start,
245 String path) throws RemoteException;
246
Dianne Hackborn55280a92009-05-07 15:53:46 -0700247 public boolean shutdown(int timeout) throws RemoteException;
248
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700249 public void stopAppSwitches() throws RemoteException;
250 public void resumeAppSwitches() throws RemoteException;
251
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800252 /*
253 * Private non-Binder interfaces
254 */
255 /* package */ boolean testIsSystemReady();
256
257 /** Information you can retrieve about a particular application. */
258 public static class ContentProviderHolder implements Parcelable {
259 public final ProviderInfo info;
260 public final String permissionFailure;
261 public IContentProvider provider;
262 public boolean noReleaseNeeded;
263
264 public ContentProviderHolder(ProviderInfo _info) {
265 info = _info;
266 permissionFailure = null;
267 }
268
269 public ContentProviderHolder(ProviderInfo _info,
270 String _permissionFailure) {
271 info = _info;
272 permissionFailure = _permissionFailure;
273 }
274
275 public int describeContents() {
276 return 0;
277 }
278
279 public void writeToParcel(Parcel dest, int flags) {
280 info.writeToParcel(dest, 0);
281 dest.writeString(permissionFailure);
282 if (provider != null) {
283 dest.writeStrongBinder(provider.asBinder());
284 } else {
285 dest.writeStrongBinder(null);
286 }
287 dest.writeInt(noReleaseNeeded ? 1:0);
288 }
289
290 public static final Parcelable.Creator<ContentProviderHolder> CREATOR
291 = new Parcelable.Creator<ContentProviderHolder>() {
292 public ContentProviderHolder createFromParcel(Parcel source) {
293 return new ContentProviderHolder(source);
294 }
295
296 public ContentProviderHolder[] newArray(int size) {
297 return new ContentProviderHolder[size];
298 }
299 };
300
301 private ContentProviderHolder(Parcel source) {
302 info = ProviderInfo.CREATOR.createFromParcel(source);
303 permissionFailure = source.readString();
304 provider = ContentProviderNative.asInterface(
305 source.readStrongBinder());
306 noReleaseNeeded = source.readInt() != 0;
307 }
308 };
309
310 String descriptor = "android.app.IActivityManager";
311
312 // Please keep these transaction codes the same -- they are also
313 // sent by C++ code.
314 int START_RUNNING_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION;
315 int HANDLE_APPLICATION_ERROR_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+1;
316 int START_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+2;
317 int UNHANDLED_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+3;
318 int OPEN_CONTENT_URI_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+4;
319
320 // Remaining non-native transaction codes.
321 int FINISH_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+10;
322 int REGISTER_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+11;
323 int UNREGISTER_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+12;
324 int BROADCAST_INTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+13;
325 int UNBROADCAST_INTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+14;
326 int FINISH_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+15;
327 int ATTACH_APPLICATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+16;
328 int ACTIVITY_IDLE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+17;
329 int ACTIVITY_PAUSED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+18;
330 int ACTIVITY_STOPPED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+19;
331 int GET_CALLING_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+20;
332 int GET_CALLING_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+21;
333 int GET_TASKS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+22;
334 int MOVE_TASK_TO_FRONT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+23;
335 int MOVE_TASK_TO_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+24;
336 int MOVE_TASK_BACKWARDS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+25;
337 int GET_TASK_FOR_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+26;
338 int REPORT_THUMBNAIL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+27;
339 int GET_CONTENT_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+28;
340 int PUBLISH_CONTENT_PROVIDERS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+29;
341 int SET_PERSISTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+30;
342 int FINISH_SUB_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+31;
343 int SYSTEM_READY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+32;
344 int START_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+33;
345 int STOP_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+34;
346 int BIND_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+35;
347 int UNBIND_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+36;
348 int PUBLISH_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+37;
349 int FINISH_OTHER_INSTANCES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+38;
350 int GOING_TO_SLEEP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+39;
351 int WAKING_UP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+40;
352 int SET_DEBUG_APP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+41;
353 int SET_ALWAYS_FINISH_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+42;
354 int START_INSTRUMENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+43;
355 int FINISH_INSTRUMENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+44;
356 int GET_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+45;
357 int UPDATE_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+46;
358 int STOP_SERVICE_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+47;
359 int GET_ACTIVITY_CLASS_FOR_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+48;
360 int GET_PACKAGE_FOR_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+49;
361 int SET_PROCESS_LIMIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+50;
362 int GET_PROCESS_LIMIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+51;
363 int CHECK_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+52;
364 int CHECK_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+53;
365 int GRANT_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+54;
366 int REVOKE_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+55;
367 int SET_ACTIVITY_WATCHER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+56;
368 int SHOW_WAITING_FOR_DEBUGGER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+57;
369 int SIGNAL_PERSISTENT_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+58;
370 int GET_RECENT_TASKS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+59;
371 int SERVICE_DONE_EXECUTING_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+60;
372 int ACTIVITY_DESTROYED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+61;
373 int GET_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+62;
374 int CANCEL_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+63;
375 int GET_PACKAGE_FOR_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+64;
376 int ENTER_SAFE_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+65;
377 int START_NEXT_MATCHING_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+66;
378 int NOTE_WAKEUP_ALARM_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+67;
379 int REMOVE_CONTENT_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+68;
380 int SET_REQUESTED_ORIENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+69;
381 int GET_REQUESTED_ORIENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+70;
382 int UNBIND_FINISHED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+71;
383 int SET_PROCESS_FOREGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+72;
384 int SET_SERVICE_FOREGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+73;
385 int MOVE_ACTIVITY_TASK_TO_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+74;
386 int GET_MEMORY_INFO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+75;
387 int GET_PROCESSES_IN_ERROR_STATE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+76;
388 int CLEAR_APP_DATA_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+77;
389 int RESTART_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+78;
390 int KILL_PIDS_FOR_MEMORY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+79;
391 int GET_SERVICES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+80;
392 int REPORT_PSS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+81;
393 int GET_RUNNING_APP_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+82;
394 int GET_DEVICE_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+83;
395 int PEEK_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+84;
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -0800396 int PROFILE_CONTROL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+85;
Dianne Hackborn55280a92009-05-07 15:53:46 -0700397 int SHUTDOWN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+86;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700398 int STOP_APP_SWITCHES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+87;
399 int RESUME_APP_SWITCHES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+88;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800400}