Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a3869525 authored by Jeff Brown's avatar Jeff Brown Committed by Android (Google) Code Review
Browse files

Merge "Move accessibility manager service to own package."

parents bacdc810 6e6cd7a5
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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;
+2 −2
Original line number Diff line number Diff line
@@ -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);