summaryrefslogtreecommitdiffstats
path: root/src-ambient/incall/AuthenticationListenerImpl.java
diff options
context:
space:
mode:
Diffstat (limited to 'src-ambient/incall/AuthenticationListenerImpl.java')
-rw-r--r--src-ambient/incall/AuthenticationListenerImpl.java27
1 files changed, 0 insertions, 27 deletions
diff --git a/src-ambient/incall/AuthenticationListenerImpl.java b/src-ambient/incall/AuthenticationListenerImpl.java
deleted file mode 100644
index aec72c8..0000000
--- a/src-ambient/incall/AuthenticationListenerImpl.java
+++ /dev/null
@@ -1,27 +0,0 @@
-package com.android.phone.common.incall;
-
-import android.content.ComponentName;
-import android.os.RemoteException;
-import android.util.Log;
-
-import com.cyanogen.ambient.incall.extension.IAuthenticationListener;
-
-public class AuthenticationListenerImpl extends IAuthenticationListener.Stub {
- private static final String TAG = "AuthenticationListener";
- private ComponentName mComponentName;
-
- public static AuthenticationListenerImpl getInstance(ComponentName componentName) {
- return new AuthenticationListenerImpl(componentName);
- }
-
- private AuthenticationListenerImpl(ComponentName cn) {
- mComponentName = cn;
- }
-
- @Override
- public void authenticationStateUpdated(int state) throws RemoteException {
- Log.d(TAG, "Getting authenticationStateUpdated for: " + mComponentName + " state: " +
- state);
- CallMethodHelper.updateAuthenticationState(mComponentName, state);
- }
-} \ No newline at end of file