summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChiao Cheng <chiaocheng@google.com>2013-07-24 16:39:29 -0700
committerChiao Cheng <chiaocheng@google.com>2013-07-24 16:39:29 -0700
commit07861f115f6edf9dbdb55cc90d896ff7416e6520 (patch)
tree4d8933d0793b663efebc027b69d0870a861cf4d2
parenta152b4605cd8f441257f8b561fb8b1473e34c8a9 (diff)
Renaming client side stub of ICallCommandService.
Since the server side already has a class named CallCommandService, renaming client side to be CallCommandClient to avoid confusion. Change-Id: If8aa1741e45a97b11e6699746a3561227900f792
-rw-r--r--InCallUI/src/com/android/incallui/AnswerPresenter.java2
-rw-r--r--InCallUI/src/com/android/incallui/CallButtonPresenter.java4
-rw-r--r--InCallUI/src/com/android/incallui/CallCommandClient.java (renamed from InCallUI/src/com/android/incallui/CallCommandService.java)14
-rw-r--r--InCallUI/src/com/android/incallui/CallHandlerService.java2
4 files changed, 11 insertions, 11 deletions
diff --git a/InCallUI/src/com/android/incallui/AnswerPresenter.java b/InCallUI/src/com/android/incallui/AnswerPresenter.java
index ecaa5cc54..d6f87c74c 100644
--- a/InCallUI/src/com/android/incallui/AnswerPresenter.java
+++ b/InCallUI/src/com/android/incallui/AnswerPresenter.java
@@ -37,7 +37,7 @@ public class AnswerPresenter extends Presenter<Ui> {
public void onAnswer() {
// TODO(klp): hook in call id.
- CallCommandService.getInstance().answerCall(1);
+ CallCommandClient.getInstance().answerCall(1);
notifyListeners();
}
diff --git a/InCallUI/src/com/android/incallui/CallButtonPresenter.java b/InCallUI/src/com/android/incallui/CallButtonPresenter.java
index f1e83e2fb..db727f38f 100644
--- a/InCallUI/src/com/android/incallui/CallButtonPresenter.java
+++ b/InCallUI/src/com/android/incallui/CallButtonPresenter.java
@@ -41,12 +41,12 @@ public class CallButtonPresenter extends Presenter<CallButtonPresenter.CallButto
}
public void muteClicked(boolean checked) {
- CallCommandService.getInstance().mute(checked);
+ CallCommandClient.getInstance().mute(checked);
getUi().setMute(checked);
}
public void speakerClicked(boolean checked) {
- CallCommandService.getInstance().turnSpeakerOn(checked);
+ CallCommandClient.getInstance().turnSpeakerOn(checked);
getUi().setSpeaker(checked);
}
diff --git a/InCallUI/src/com/android/incallui/CallCommandService.java b/InCallUI/src/com/android/incallui/CallCommandClient.java
index 7b36b7617..5868fb817 100644
--- a/InCallUI/src/com/android/incallui/CallCommandService.java
+++ b/InCallUI/src/com/android/incallui/CallCommandClient.java
@@ -25,15 +25,15 @@ import com.android.services.telephony.common.ICallCommandService;
/**
* Main interface for phone related commands.
*/
-public class CallCommandService {
+public class CallCommandClient {
- private static final String TAG = CallCommandService.class.getSimpleName();
+ private static final String TAG = CallCommandClient.class.getSimpleName();
- private static CallCommandService sInstance;
+ private static CallCommandClient sInstance;
- public static CallCommandService getInstance() {
+ public static CallCommandClient getInstance() {
if (sInstance == null) {
- throw new IllegalStateException("CallCommandService has not been initialized.");
+ throw new IllegalStateException("CallCommandClient has not been initialized.");
}
return sInstance;
}
@@ -41,13 +41,13 @@ public class CallCommandService {
// TODO(klp): Not sure if static call is ok. Might need to switch to normal service binding.
public static void init(ICallCommandService service) {
Preconditions.checkState(sInstance == null);
- sInstance = new CallCommandService(service);
+ sInstance = new CallCommandClient(service);
}
private ICallCommandService mCommandService;
- private CallCommandService(ICallCommandService service) {
+ private CallCommandClient(ICallCommandService service) {
mCommandService = service;
}
diff --git a/InCallUI/src/com/android/incallui/CallHandlerService.java b/InCallUI/src/com/android/incallui/CallHandlerService.java
index dac65636b..5ede848f9 100644
--- a/InCallUI/src/com/android/incallui/CallHandlerService.java
+++ b/InCallUI/src/com/android/incallui/CallHandlerService.java
@@ -51,7 +51,7 @@ public class CallHandlerService extends Service {
@Override
public void setCallCommandService(ICallCommandService service) {
logD("onConnected: " + service.toString());
- CallCommandService.init(service);
+ CallCommandClient.init(service);
}
@Override