blob: d5715a527f56f8d160144b172c7691bb2322384e [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2007 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 com.android.server;
18
Jim Millera75a8832013-02-07 16:53:32 -080019import android.app.ActivityManager;
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -070020import android.appwidget.AppWidgetProviderInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080021import android.content.BroadcastReceiver;
22import android.content.ComponentName;
23import android.content.Context;
24import android.content.Intent;
25import android.content.IntentFilter;
Winson Chung81f39eb2011-01-11 18:05:01 -080026import android.content.pm.PackageManager;
Amith Yamasani8fd96ec2012-09-21 17:48:49 -070027import android.os.Binder;
Adam Cohene8724c82012-04-19 17:11:40 -070028import android.os.Bundle;
Adam Cohena1a2f962012-11-01 14:06:16 -070029import android.os.Handler;
30import android.os.HandlerThread;
Winson Chung81f39eb2011-01-11 18:05:01 -080031import android.os.IBinder;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080032import android.os.RemoteException;
Dianne Hackborn41203752012-08-31 14:05:51 -070033import android.os.UserHandle;
Joe Onorato8a9b2202010-02-26 18:56:32 -080034import android.util.Slog;
Amith Yamasani742a6712011-05-04 14:49:28 -070035import android.util.SparseArray;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080036import android.widget.RemoteViews;
37
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -070038import com.android.internal.appwidget.IAppWidgetHost;
Winson Chung81f39eb2011-01-11 18:05:01 -080039import com.android.internal.appwidget.IAppWidgetService;
Amith Yamasani8320de82012-10-05 16:10:38 -070040import com.android.internal.util.IndentingPrintWriter;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080041
Adam Cohen97300312011-10-12 15:48:13 -070042import java.io.FileDescriptor;
Adam Cohen97300312011-10-12 15:48:13 -070043import java.io.PrintWriter;
Adam Cohen97300312011-10-12 15:48:13 -070044import java.util.List;
45import java.util.Locale;
46
Amith Yamasani742a6712011-05-04 14:49:28 -070047
48/**
49 * Redirects calls to this service to the instance of the service for the appropriate user.
50 */
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -070051class AppWidgetService extends IAppWidgetService.Stub
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080052{
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -070053 private static final String TAG = "AppWidgetService";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080054
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080055 Context mContext;
Eric Fischer63c2d9e2009-10-22 15:22:50 -070056 Locale mLocale;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080057 PackageManager mPackageManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080058 boolean mSafeMode;
Adam Cohena1a2f962012-11-01 14:06:16 -070059 private final Handler mSaveStateHandler;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080060
Amith Yamasani742a6712011-05-04 14:49:28 -070061 private final SparseArray<AppWidgetServiceImpl> mAppWidgetServices;
Adam Cohen7bb98832011-10-05 18:10:13 -070062
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -070063 AppWidgetService(Context context) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080064 mContext = context;
Adam Cohena1a2f962012-11-01 14:06:16 -070065
66 HandlerThread handlerThread = new HandlerThread("AppWidgetService -- Save state");
67 handlerThread.start();
68 mSaveStateHandler = new Handler(handlerThread.getLooper());
69
Amith Yamasani742a6712011-05-04 14:49:28 -070070 mAppWidgetServices = new SparseArray<AppWidgetServiceImpl>(5);
Adam Cohena1a2f962012-11-01 14:06:16 -070071 AppWidgetServiceImpl primary = new AppWidgetServiceImpl(context, 0, mSaveStateHandler);
Amith Yamasani742a6712011-05-04 14:49:28 -070072 mAppWidgetServices.append(0, primary);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080073 }
74
75 public void systemReady(boolean safeMode) {
76 mSafeMode = safeMode;
77
Amith Yamasani742a6712011-05-04 14:49:28 -070078 mAppWidgetServices.get(0).systemReady(safeMode);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080079
80 // Register for the boot completed broadcast, so we can send the
Amith Yamasani742a6712011-05-04 14:49:28 -070081 // ENABLE broacasts. If we try to send them now, they time out,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080082 // because the system isn't ready to handle them yet.
Dianne Hackborn20e80982012-08-31 19:00:44 -070083 mContext.registerReceiverAsUser(mBroadcastReceiver, UserHandle.ALL,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080084 new IntentFilter(Intent.ACTION_BOOT_COMPLETED), null, null);
85
Eric Fischer63c2d9e2009-10-22 15:22:50 -070086 // Register for configuration changes so we can update the names
87 // of the widgets when the locale changes.
Dianne Hackbornfd8bf5c2012-09-04 18:48:37 -070088 mContext.registerReceiverAsUser(mBroadcastReceiver, UserHandle.ALL,
89 new IntentFilter(Intent.ACTION_CONFIGURATION_CHANGED), null, null);
Eric Fischer63c2d9e2009-10-22 15:22:50 -070090
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080091 // Register for broadcasts about package install, etc., so we can
92 // update the provider list.
93 IntentFilter filter = new IntentFilter();
94 filter.addAction(Intent.ACTION_PACKAGE_ADDED);
Joe Onoratod070e892011-01-07 20:50:37 -080095 filter.addAction(Intent.ACTION_PACKAGE_CHANGED);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080096 filter.addAction(Intent.ACTION_PACKAGE_REMOVED);
97 filter.addDataScheme("package");
Dianne Hackborn20e80982012-08-31 19:00:44 -070098 mContext.registerReceiverAsUser(mBroadcastReceiver, UserHandle.ALL,
99 filter, null, null);
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800100 // Register for events related to sdcard installation.
101 IntentFilter sdFilter = new IntentFilter();
Suchi Amalapurapub56ae202010-02-04 22:51:07 -0800102 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
103 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
Dianne Hackborn20e80982012-08-31 19:00:44 -0700104 mContext.registerReceiverAsUser(mBroadcastReceiver, UserHandle.ALL,
105 sdFilter, null, null);
Amith Yamasani13593602012-03-22 16:16:17 -0700106
107 IntentFilter userFilter = new IntentFilter();
108 userFilter.addAction(Intent.ACTION_USER_REMOVED);
Amith Yamasani756901d2012-10-12 12:30:07 -0700109 userFilter.addAction(Intent.ACTION_USER_STOPPING);
Amith Yamasani13593602012-03-22 16:16:17 -0700110 mContext.registerReceiver(new BroadcastReceiver() {
111 @Override
112 public void onReceive(Context context, Intent intent) {
Amith Yamasani756901d2012-10-12 12:30:07 -0700113 if (Intent.ACTION_USER_REMOVED.equals(intent.getAction())) {
114 onUserRemoved(intent.getIntExtra(Intent.EXTRA_USER_HANDLE,
115 UserHandle.USER_NULL));
116 } else if (Intent.ACTION_USER_STOPPING.equals(intent.getAction())) {
117 onUserStopping(intent.getIntExtra(Intent.EXTRA_USER_HANDLE,
118 UserHandle.USER_NULL));
119 }
Amith Yamasani13593602012-03-22 16:16:17 -0700120 }
121 }, userFilter);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800122 }
123
Amith Yamasani742a6712011-05-04 14:49:28 -0700124 @Override
Jim Millera75a8832013-02-07 16:53:32 -0800125 public int allocateAppWidgetId(String packageName, int hostId, int userId)
Adam Cohen0aa2d422012-09-07 17:37:26 -0700126 throws RemoteException {
Jim Millera75a8832013-02-07 16:53:32 -0800127 return getImplForUser(userId).allocateAppWidgetId(packageName, hostId);
128 }
129
130 @Override
131 public int[] getAppWidgetIdsForHost(int hostId, int userId) throws RemoteException {
132 return getImplForUser(userId).getAppWidgetIdsForHost(hostId);
133 }
134
135 @Override
136 public void deleteAppWidgetId(int appWidgetId, int userId) throws RemoteException {
137 getImplForUser(userId).deleteAppWidgetId(appWidgetId);
138 }
139
140 @Override
141 public void deleteHost(int hostId, int userId) throws RemoteException {
142 getImplForUser(userId).deleteHost(hostId);
143 }
144
145 @Override
146 public void deleteAllHosts(int userId) throws RemoteException {
147 getImplForUser(userId).deleteAllHosts();
148 }
149
150 @Override
151 public void bindAppWidgetId(int appWidgetId, ComponentName provider, Bundle options, int userId)
152 throws RemoteException {
153 getImplForUser(userId).bindAppWidgetId(appWidgetId, provider, options);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800154 }
155
Amith Yamasani742a6712011-05-04 14:49:28 -0700156 @Override
Michael Jurka61a5b012012-04-13 10:39:45 -0700157 public boolean bindAppWidgetIdIfAllowed(
Jim Millera75a8832013-02-07 16:53:32 -0800158 String packageName, int appWidgetId, ComponentName provider, Bundle options, int userId)
Adam Cohen0aa2d422012-09-07 17:37:26 -0700159 throws RemoteException {
Jim Millera75a8832013-02-07 16:53:32 -0800160 return getImplForUser(userId).bindAppWidgetIdIfAllowed(
Adam Cohen0aa2d422012-09-07 17:37:26 -0700161 packageName, appWidgetId, provider, options);
Michael Jurka61a5b012012-04-13 10:39:45 -0700162 }
163
164 @Override
Jim Millera75a8832013-02-07 16:53:32 -0800165 public boolean hasBindAppWidgetPermission(String packageName, int userId)
166 throws RemoteException {
167 return getImplForUser(userId).hasBindAppWidgetPermission(packageName);
Michael Jurka61a5b012012-04-13 10:39:45 -0700168 }
169
170 @Override
Jim Millera75a8832013-02-07 16:53:32 -0800171 public void setBindAppWidgetPermission(String packageName, boolean permission, int userId)
Michael Jurka61a5b012012-04-13 10:39:45 -0700172 throws RemoteException {
Jim Millera75a8832013-02-07 16:53:32 -0800173 getImplForUser(userId).setBindAppWidgetPermission(packageName, permission);
Michael Jurka61a5b012012-04-13 10:39:45 -0700174 }
175
176 @Override
Amith Yamasanic566b432012-11-30 15:26:21 -0800177 public void bindRemoteViewsService(int appWidgetId, Intent intent, IBinder connection,
178 int userId) throws RemoteException {
Jim Millera75a8832013-02-07 16:53:32 -0800179 getImplForUser(userId).bindRemoteViewsService(appWidgetId, intent, connection);
Winson Chung81f39eb2011-01-11 18:05:01 -0800180 }
181
Amith Yamasani742a6712011-05-04 14:49:28 -0700182 @Override
183 public int[] startListening(IAppWidgetHost host, String packageName, int hostId,
Amith Yamasanic566b432012-11-30 15:26:21 -0800184 List<RemoteViews> updatedViews, int userId) throws RemoteException {
Amith Yamasanic566b432012-11-30 15:26:21 -0800185 return getImplForUser(userId).startListening(host, packageName, hostId, updatedViews);
186 }
187
Amith Yamasani13593602012-03-22 16:16:17 -0700188 public void onUserRemoved(int userId) {
Amith Yamasani13593602012-03-22 16:16:17 -0700189 if (userId < 1) return;
Amith Yamasani8320de82012-10-05 16:10:38 -0700190 synchronized (mAppWidgetServices) {
191 AppWidgetServiceImpl impl = mAppWidgetServices.get(userId);
192 mAppWidgetServices.remove(userId);
Amith Yamasani756901d2012-10-12 12:30:07 -0700193
Amith Yamasani8320de82012-10-05 16:10:38 -0700194 if (impl == null) {
195 AppWidgetServiceImpl.getSettingsFile(userId).delete();
196 } else {
197 impl.onUserRemoved();
198 }
Amith Yamasani13593602012-03-22 16:16:17 -0700199 }
Winson Chung84bbb022011-02-21 13:57:45 -0800200 }
201
Amith Yamasani756901d2012-10-12 12:30:07 -0700202 public void onUserStopping(int userId) {
203 if (userId < 1) return;
204 synchronized (mAppWidgetServices) {
205 AppWidgetServiceImpl impl = mAppWidgetServices.get(userId);
206 if (impl != null) {
207 mAppWidgetServices.remove(userId);
208 impl.onUserStopping();
209 }
210 }
Dianne Hackborn20e80982012-08-31 19:00:44 -0700211 }
212
Jim Millera75a8832013-02-07 16:53:32 -0800213 private void checkPermission(int userId) {
214 int realUserId = ActivityManager.handleIncomingUser(
215 Binder.getCallingPid(),
216 Binder.getCallingUid(),
217 userId,
218 false, /* allowAll */
219 true, /* requireFull */
220 this.getClass().getSimpleName(),
221 this.getClass().getPackage().getName());
222 }
223
Dianne Hackborn41203752012-08-31 14:05:51 -0700224 private AppWidgetServiceImpl getImplForUser(int userId) {
Jim Millera75a8832013-02-07 16:53:32 -0800225 checkPermission(userId);
Amith Yamasani8320de82012-10-05 16:10:38 -0700226 boolean sendInitial = false;
227 AppWidgetServiceImpl service;
228 synchronized (mAppWidgetServices) {
229 service = mAppWidgetServices.get(userId);
230 if (service == null) {
231 Slog.i(TAG, "Unable to find AppWidgetServiceImpl for user " + userId + ", adding");
232 // TODO: Verify that it's a valid user
Adam Cohena1a2f962012-11-01 14:06:16 -0700233 service = new AppWidgetServiceImpl(mContext, userId, mSaveStateHandler);
Amith Yamasani8320de82012-10-05 16:10:38 -0700234 service.systemReady(mSafeMode);
235 // Assume that BOOT_COMPLETED was received, as this is a non-primary user.
236 mAppWidgetServices.append(userId, service);
237 sendInitial = true;
238 }
Winson Chung84bbb022011-02-21 13:57:45 -0800239 }
Amith Yamasani8320de82012-10-05 16:10:38 -0700240 if (sendInitial) {
241 service.sendInitialBroadcasts();
242 }
Amith Yamasani742a6712011-05-04 14:49:28 -0700243 return service;
Winson Chung84bbb022011-02-21 13:57:45 -0800244 }
245
Amith Yamasani742a6712011-05-04 14:49:28 -0700246 @Override
Jim Millera75a8832013-02-07 16:53:32 -0800247 public int[] getAppWidgetIds(ComponentName provider, int userId) throws RemoteException {
248 return getImplForUser(userId).getAppWidgetIds(provider);
Winson Chung84bbb022011-02-21 13:57:45 -0800249 }
250
Amith Yamasani742a6712011-05-04 14:49:28 -0700251 @Override
Jim Millera75a8832013-02-07 16:53:32 -0800252 public AppWidgetProviderInfo getAppWidgetInfo(int appWidgetId, int userId)
Adam Cohend9e5af32012-11-28 16:34:57 -0800253 throws RemoteException {
Jim Millera75a8832013-02-07 16:53:32 -0800254 return getImplForUser(userId).getAppWidgetInfo(appWidgetId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800255 }
256
Amith Yamasani742a6712011-05-04 14:49:28 -0700257 @Override
Jim Millera75a8832013-02-07 16:53:32 -0800258 public RemoteViews getAppWidgetViews(int appWidgetId, int userId) throws RemoteException {
259 return getImplForUser(userId).getAppWidgetViews(appWidgetId);
260 }
261
262 @Override
263 public void updateAppWidgetOptions(int appWidgetId, Bundle options, int userId) {
264 getImplForUser(userId).updateAppWidgetOptions(appWidgetId, options);
265 }
266
267 @Override
268 public Bundle getAppWidgetOptions(int appWidgetId, int userId) {
269 return getImplForUser(userId).getAppWidgetOptions(appWidgetId);
270 }
271
272 @Override
273 public List<AppWidgetProviderInfo> getInstalledProviders(int categoryFilter, int userId)
Amith Yamasani742a6712011-05-04 14:49:28 -0700274 throws RemoteException {
Jim Millera75a8832013-02-07 16:53:32 -0800275 return getImplForUser(userId).getInstalledProviders(categoryFilter);
276 }
277
278 @Override
279 public void notifyAppWidgetViewDataChanged(int[] appWidgetIds, int viewId, int userId)
280 throws RemoteException {
281 getImplForUser(userId).notifyAppWidgetViewDataChanged(
Dianne Hackborn41203752012-08-31 14:05:51 -0700282 appWidgetIds, viewId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800283 }
284
Amith Yamasani742a6712011-05-04 14:49:28 -0700285 @Override
Jim Millera75a8832013-02-07 16:53:32 -0800286 public void partiallyUpdateAppWidgetIds(int[] appWidgetIds, RemoteViews views, int userId)
Amith Yamasani742a6712011-05-04 14:49:28 -0700287 throws RemoteException {
Jim Millera75a8832013-02-07 16:53:32 -0800288 getImplForUser(userId).partiallyUpdateAppWidgetIds(
Dianne Hackborn41203752012-08-31 14:05:51 -0700289 appWidgetIds, views);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800290 }
291
Amith Yamasani742a6712011-05-04 14:49:28 -0700292 @Override
Jim Millera75a8832013-02-07 16:53:32 -0800293 public void stopListening(int hostId, int userId) throws RemoteException {
Amith Yamasanic566b432012-11-30 15:26:21 -0800294 getImplForUser(userId).stopListening(hostId);
295 }
296
297 @Override
298 public void unbindRemoteViewsService(int appWidgetId, Intent intent, int userId)
299 throws RemoteException {
Amith Yamasanic566b432012-11-30 15:26:21 -0800300 getImplForUser(userId).unbindRemoteViewsService(
Dianne Hackborn41203752012-08-31 14:05:51 -0700301 appWidgetId, intent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800302 }
303
Amith Yamasani742a6712011-05-04 14:49:28 -0700304 @Override
Jim Millera75a8832013-02-07 16:53:32 -0800305 public void updateAppWidgetIds(int[] appWidgetIds, RemoteViews views, int userId)
306 throws RemoteException {
307 getImplForUser(userId).updateAppWidgetIds(appWidgetIds, views);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800308 }
Adam Cohen97300312011-10-12 15:48:13 -0700309
Amith Yamasani742a6712011-05-04 14:49:28 -0700310 @Override
Jim Millera75a8832013-02-07 16:53:32 -0800311 public void updateAppWidgetProvider(ComponentName provider, RemoteViews views, int userId)
Amith Yamasani742a6712011-05-04 14:49:28 -0700312 throws RemoteException {
Jim Millera75a8832013-02-07 16:53:32 -0800313 getImplForUser(userId).updateAppWidgetProvider(provider, views);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800314 }
315
Amith Yamasani742a6712011-05-04 14:49:28 -0700316 @Override
317 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
Jeff Sharkey52801aa2012-10-12 16:06:16 -0700318 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.DUMP, TAG);
319
Amith Yamasani742a6712011-05-04 14:49:28 -0700320 // Dump the state of all the app widget providers
Amith Yamasani8320de82012-10-05 16:10:38 -0700321 synchronized (mAppWidgetServices) {
322 IndentingPrintWriter ipw = new IndentingPrintWriter(pw, " ");
323 for (int i = 0; i < mAppWidgetServices.size(); i++) {
324 pw.println("User: " + mAppWidgetServices.keyAt(i));
325 ipw.increaseIndent();
326 AppWidgetServiceImpl service = mAppWidgetServices.valueAt(i);
327 service.dump(fd, ipw, args);
328 ipw.decreaseIndent();
329 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800330 }
331 }
332
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800333 BroadcastReceiver mBroadcastReceiver = new BroadcastReceiver() {
334 public void onReceive(Context context, Intent intent) {
335 String action = intent.getAction();
Amith Yamasani742a6712011-05-04 14:49:28 -0700336 // Slog.d(TAG, "received " + action);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800337 if (Intent.ACTION_BOOT_COMPLETED.equals(action)) {
Amith Yamasani756901d2012-10-12 12:30:07 -0700338 int userId = intent.getIntExtra(Intent.EXTRA_USER_HANDLE, UserHandle.USER_NULL);
Dianne Hackborn41203752012-08-31 14:05:51 -0700339 if (userId >= 0) {
340 getImplForUser(userId).sendInitialBroadcasts();
341 } else {
Amith Yamasani756901d2012-10-12 12:30:07 -0700342 Slog.w(TAG, "Incorrect user handle supplied in " + intent);
Dianne Hackborn41203752012-08-31 14:05:51 -0700343 }
Eric Fischer63c2d9e2009-10-22 15:22:50 -0700344 } else if (Intent.ACTION_CONFIGURATION_CHANGED.equals(action)) {
Amith Yamasani742a6712011-05-04 14:49:28 -0700345 for (int i = 0; i < mAppWidgetServices.size(); i++) {
346 AppWidgetServiceImpl service = mAppWidgetServices.valueAt(i);
347 service.onConfigurationChanged();
Eric Fischer63c2d9e2009-10-22 15:22:50 -0700348 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800349 } else {
Dianne Hackborn20e80982012-08-31 19:00:44 -0700350 int sendingUser = getSendingUserId();
351 if (sendingUser == UserHandle.USER_ALL) {
352 for (int i = 0; i < mAppWidgetServices.size(); i++) {
353 AppWidgetServiceImpl service = mAppWidgetServices.valueAt(i);
354 service.onBroadcastReceived(intent);
355 }
356 } else {
357 AppWidgetServiceImpl service = mAppWidgetServices.get(sendingUser);
358 if (service != null) {
359 service.onBroadcastReceived(intent);
360 }
Amith Yamasani483f3b02012-03-13 16:08:00 -0700361 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800362 }
363 }
364 };
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800365}