summaryrefslogtreecommitdiffstats
path: root/telecomm
diff options
context:
space:
mode:
authorSailesh Nepal <sail@google.com>2014-03-11 20:44:22 -0700
committerSailesh Nepal <sail@google.com>2014-03-11 20:44:22 -0700
commitd6c9a7f0cfb71b735f247cb1bfbafc07fa2da832 (patch)
treed8ae25891a7d70ee328c26aec5c47ed7e071a443 /telecomm
parent40441101b2b0308a85f988fc84a2c347ff3b59eb (diff)
downloadframeworks_base-d6c9a7f0cfb71b735f247cb1bfbafc07fa2da832.zip
frameworks_base-d6c9a7f0cfb71b735f247cb1bfbafc07fa2da832.tar.gz
frameworks_base-d6c9a7f0cfb71b735f247cb1bfbafc07fa2da832.tar.bz2
Fix build break due to links to private APIs
Change-Id: I22360bd93800e1d898becb9fee9312acf82b78c7
Diffstat (limited to 'telecomm')
-rw-r--r--telecomm/java/android/telecomm/CallService.java4
-rw-r--r--telecomm/java/android/telecomm/CallServiceProvider.java8
2 files changed, 6 insertions, 6 deletions
diff --git a/telecomm/java/android/telecomm/CallService.java b/telecomm/java/android/telecomm/CallService.java
index 87a5372..52b2599 100644
--- a/telecomm/java/android/telecomm/CallService.java
+++ b/telecomm/java/android/telecomm/CallService.java
@@ -190,7 +190,7 @@ public abstract class CallService extends Service {
/**
* Determines if the CallService can place the specified call. Response is sent via
- * {@link CallServiceAdapter#setCompatibleWith}. When responding, the correct call ID must be
+ * {@link CallServiceAdapter#setIsCompatibleWith}. When responding, the correct call ID must be
* specified. Only used in the context of outgoing calls and call switching (handoff).
*
* @param callInfo The details of the relevant call.
@@ -224,7 +224,7 @@ public abstract class CallService extends Service {
* Receives a new call ID to use with an incoming call. Invoked by Telecomm after it is notified
* that this call service has a pending incoming call, see
* {@link TelecommConstants#ACTION_INCOMING_CALL}. The call service must first give Telecomm
- * additional information about the call through {@link CallServiceAdapter#handleIncomingCall}.
+ * additional information about the call through {@link CallServiceAdapter#notifyIncomingCall}.
* Following that, the call service can update the call at will using the specified call ID.
*
* If a {@link Bundle} was passed (via {@link TelecommConstants#EXTRA_INCOMING_CALL_EXTRAS}) in
diff --git a/telecomm/java/android/telecomm/CallServiceProvider.java b/telecomm/java/android/telecomm/CallServiceProvider.java
index 5db7e2e..c50334a 100644
--- a/telecomm/java/android/telecomm/CallServiceProvider.java
+++ b/telecomm/java/android/telecomm/CallServiceProvider.java
@@ -26,11 +26,11 @@ import com.android.internal.telecomm.ICallServiceLookupResponse;
import com.android.internal.telecomm.ICallServiceProvider;
/**
- * Base implementation of {@link ICallServiceProvider} which extends {@link Service}. This class
+ * Base implementation of a call service provider which extends {@link Service}. This class
* should be extended by an app that wants to supply phone calls to be handled and managed by
- * the device's in-call interface. All method-calls from the framework to
- * {@link ICallServiceProvider} are passed through to the main thread for before executing the
- * overriden methods of CallServiceProvider.
+ * the device's in-call interface. All method-calls from the framework to the call service provider
+ * are passed through to the main thread for before executing the overriden methods of
+ * CallServiceProvider.
*
* TODO(santoscordon): Improve paragraph above once the final design is in place. Needs more
* about how this can be used.