Updating the outgoing call sequence.

- Removes OutgoingCallsManager
- Call now invokes it's own OutgoingCallProcessor (OCP) directly.
- Results for select(), call(), and OCP.process() now happen through
  new AsyncResultCallback closure objects specified at the time
  the methods are invoked.
- Move remaining outgoing call responsibilities in Switchboard to
  OCP including expiration and CS/selector discovery.
- Remove isCompatibleWith sequence

Change-Id: Ie63c7900dc7a324d0c56e0767ed19b2ef0868528
diff --git a/src/com/android/telecomm/ServiceBinder.java b/src/com/android/telecomm/ServiceBinder.java
index ed84bcf..55e39f0 100644
--- a/src/com/android/telecomm/ServiceBinder.java
+++ b/src/com/android/telecomm/ServiceBinder.java
@@ -219,7 +219,7 @@
 
     final boolean isServiceValid(String actionName) {
         if (mBinder == null) {
-            Log.wtf(this, "%s invoked while service is unbound", actionName);
+            Log.w(this, "%s invoked while service is unbound", actionName);
             return false;
         }