summaryrefslogtreecommitdiff
path: root/InCallUI/src/com/android/incallui/VideoCallFragment.java
diff options
context:
space:
mode:
authorAndrew Lee <anwlee@google.com>2015-04-16 18:04:25 -0700
committerAndrew Lee <anwlee@google.com>2015-04-16 18:05:54 -0700
commit9bcd0f1e66d4a8aa9e2e6b2b6d2c3efd6ffddb75 (patch)
treeb24c7ca16bc9e633503c75d9d948e5c73e393a0f /InCallUI/src/com/android/incallui/VideoCallFragment.java
parent4835bf85d6908e55630d58d889f654acbfe011bb (diff)
Make createPresenter() and getUi() public.
... and update the visibility of their overriden instances. This allows us to create fragments with the BaseFragment/Presenter fragment which do not live in the incallui root directory. Bug: 20300758 Change-Id: I7f9b1c630538a04ca773ba155e5fb8efd6cf6af7
Diffstat (limited to 'InCallUI/src/com/android/incallui/VideoCallFragment.java')
-rw-r--r--InCallUI/src/com/android/incallui/VideoCallFragment.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/InCallUI/src/com/android/incallui/VideoCallFragment.java b/InCallUI/src/com/android/incallui/VideoCallFragment.java
index 6077017f5..c285ff3fe 100644
--- a/InCallUI/src/com/android/incallui/VideoCallFragment.java
+++ b/InCallUI/src/com/android/incallui/VideoCallFragment.java
@@ -511,7 +511,7 @@ public class VideoCallFragment extends BaseFragment<VideoCallPresenter,
* @return The user interface for the presenter, which is this fragment.
*/
@Override
- VideoCallPresenter.VideoCallUi getUi() {
+ public VideoCallPresenter.VideoCallUi getUi() {
return this;
}