Change telecomm APIs from protected to public (2/3)

Bug: 16416927
Change-Id: I859c80a120fa59bba12a5c6bfca17fa57613a6aa
diff --git a/tests/src/com/android/telecomm/testapps/TestConnectionService.java b/tests/src/com/android/telecomm/testapps/TestConnectionService.java
index 8f02b9f..6d232e9 100644
--- a/tests/src/com/android/telecomm/testapps/TestConnectionService.java
+++ b/tests/src/com/android/telecomm/testapps/TestConnectionService.java
@@ -159,7 +159,7 @@
 
         /** ${inheritDoc} */
         @Override
-        protected void onAbort() {
+        public void onAbort() {
             if (mRemoteConnection != null) {
                 mRemoteConnection.disconnect();
                 mRemoteConnection.removeListener(mProxyListener);
@@ -171,7 +171,7 @@
 
         /** ${inheritDoc} */
         @Override
-        protected void onAnswer(int videoState) {
+        public void onAnswer(int videoState) {
             if (mRemoteConnection != null) {
                 mRemoteConnection.answer(videoState);
             } else {
@@ -182,7 +182,7 @@
 
         /** ${inheritDoc} */
         @Override
-        protected void onDisconnect() {
+        public void onDisconnect() {
             if (mRemoteConnection != null) {
                 mRemoteConnection.disconnect();
             } else {
@@ -194,7 +194,7 @@
 
         /** ${inheritDoc} */
         @Override
-        protected void onHold() {
+        public void onHold() {
             if (mRemoteConnection != null) {
                 mRemoteConnection.hold();
             } else {
@@ -204,7 +204,7 @@
 
         /** ${inheritDoc} */
         @Override
-        protected void onReject() {
+        public void onReject() {
             if (mRemoteConnection != null) {
                 mRemoteConnection.reject();
             } else {
@@ -216,7 +216,7 @@
 
         /** ${inheritDoc} */
         @Override
-        protected void onUnhold() {
+        public void onUnhold() {
             if (mRemoteConnection != null) {
                 mRemoteConnection.hold();
             } else {
@@ -225,7 +225,7 @@
         }
 
         @Override
-        protected void onSetAudioState(CallAudioState state) {
+        public void onSetAudioState(CallAudioState state) {
             if (mRemoteConnection != null) {
                 mRemoteConnection.setAudioState(state);
             }