Merge "Move accessibility manager service to own package."

This commit is contained in:
Jeff Brown
2011-03-30 17:20:50 -07:00
committed by Android (Google) Code Review
2 changed files with 3 additions and 2 deletions

View File

@ -16,6 +16,7 @@
package com.android.server;
import com.android.server.accessibility.AccessibilityManagerService;
import com.android.server.am.ActivityManagerService;
import com.android.server.pm.PackageManagerService;
import com.android.server.usb.UsbService;

View File

@ -14,7 +14,7 @@
** limitations under the License.
*/
package com.android.server;
package com.android.server.accessibility;
import com.android.internal.content.PackageMonitor;
import com.android.internal.os.HandlerCaller;
@ -131,7 +131,7 @@ public class AccessibilityManagerService extends IAccessibilityManager.Stub
*
* @param context A {@link Context} instance.
*/
AccessibilityManagerService(Context context) {
public AccessibilityManagerService(Context context) {
mContext = context;
mPackageManager = mContext.getPackageManager();
mCaller = new HandlerCaller(context, this);