diff options
author | Dan Egnor <egnor@google.com> | 2010-02-13 10:38:55 -0800 |
---|---|---|
committer | Dan Egnor <egnor@google.com> | 2010-02-13 12:40:12 -0800 |
commit | 1c9131c91f27c8258dfad0a92cee105275f5422a (patch) | |
tree | 753fab99f2f62b45d1ba5f055da1cb2068243e11 /services/java/com/android/server/FallbackCheckinService.java | |
parent | 5b31fdae6004c48e4915afb084c3f7944ac0f9aa (diff) |
Remove all traces of the old checkin service (and its associated parental
control interfaces) from the framework.
Diffstat (limited to 'services/java/com/android/server/FallbackCheckinService.java')
-rw-r--r-- | services/java/com/android/server/FallbackCheckinService.java | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/services/java/com/android/server/FallbackCheckinService.java b/services/java/com/android/server/FallbackCheckinService.java deleted file mode 100644 index 195eb63aea42..000000000000 --- a/services/java/com/android/server/FallbackCheckinService.java +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Copyright (C) 2008 The Android Open Source Project - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.android.server; - -import android.content.Context; -import android.content.pm.PackageManager; -import android.os.Binder; -import android.os.ICheckinService; -import android.os.IParentalControlCallback; -import android.os.RecoverySystem; -import android.util.Log; - -import java.io.IOException; - -import com.google.android.net.ParentalControlState; - -/** - * @hide - */ -public final class FallbackCheckinService extends ICheckinService.Stub { - static final String TAG = "FallbackCheckinService"; - final Context mContext; - - public FallbackCheckinService(Context context) { - mContext = context; - } - - public void getParentalControlState(IParentalControlCallback p, String requestingApp) - throws android.os.RemoteException { - ParentalControlState state = new ParentalControlState(); - state.isEnabled = false; - p.onResult(state); - } -} |