summaryrefslogtreecommitdiffstats
path: root/src-ambient/incall/CallCreditListenerImpl.java
diff options
context:
space:
mode:
Diffstat (limited to 'src-ambient/incall/CallCreditListenerImpl.java')
-rw-r--r--src-ambient/incall/CallCreditListenerImpl.java28
1 files changed, 0 insertions, 28 deletions
diff --git a/src-ambient/incall/CallCreditListenerImpl.java b/src-ambient/incall/CallCreditListenerImpl.java
deleted file mode 100644
index 13fcb30..0000000
--- a/src-ambient/incall/CallCreditListenerImpl.java
+++ /dev/null
@@ -1,28 +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.GetCreditInfoResult;
-import com.cyanogen.ambient.incall.extension.ICallCreditListener;
-
-public class CallCreditListenerImpl extends ICallCreditListener.Stub {
- private static final String TAG = "CallCreditListener";
- private ComponentName mComponentName;
-
- public static CallCreditListenerImpl getInstance(ComponentName componentName) {
- return new CallCreditListenerImpl(componentName);
- }
-
- private CallCreditListenerImpl(ComponentName cn) {
- mComponentName = cn;
- }
-
- @Override
- public void creditInfoUpdated(GetCreditInfoResult gcir)
- throws RemoteException {
- Log.d(TAG, "getting creditInfoUpdated for: " + mComponentName + " gcir: " + gcir);
- CallMethodHelper.updateCreditInfo(mComponentName, gcir);
- }
-} \ No newline at end of file