Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(484)

Side by Side Diff: webrtc/examples/androidapp/res/layout/activity_call.xml

Issue 1998483003: General cleanup on AppRTC Android Demo codebase (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Remove unused string that was accidentally added. Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/examples/androidapp/res/layout/fragment_call.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 2
3 <RelativeLayout 3 <RelativeLayout
4 xmlns:android="http://schemas.android.com/apk/res/android" 4 xmlns:android="http://schemas.android.com/apk/res/android"
5 xmlns:tools="http://schemas.android.com/tools" 5 android:layout_width="match_parent"
6 android:layout_width="match_parent" 6 android:layout_height="match_parent">
7 android:layout_height="match_parent">
8 7
9 <org.appspot.apprtc.PercentFrameLayout 8 <org.appspot.apprtc.PercentFrameLayout
10 android:id="@+id/remote_video_layout" 9 android:id="@+id/remote_video_layout"
11 android:layout_width="match_parent" 10 android:layout_width="match_parent"
12 android:layout_height="match_parent"> 11 android:layout_height="match_parent">
13 <org.webrtc.SurfaceViewRenderer 12 <org.webrtc.SurfaceViewRenderer
14 android:id="@+id/remote_video_view" 13 android:id="@+id/remote_video_view"
15 android:layout_width="wrap_content" 14 android:layout_width="wrap_content"
16 android:layout_height="wrap_content" /> 15 android:layout_height="wrap_content" />
17 </org.appspot.apprtc.PercentFrameLayout> 16 </org.appspot.apprtc.PercentFrameLayout>
(...skipping 11 matching lines...) Expand all
29 <FrameLayout 28 <FrameLayout
30 android:id="@+id/call_fragment_container" 29 android:id="@+id/call_fragment_container"
31 android:layout_width="match_parent" 30 android:layout_width="match_parent"
32 android:layout_height="match_parent" /> 31 android:layout_height="match_parent" />
33 <FrameLayout 32 <FrameLayout
34 android:id="@+id/hud_fragment_container" 33 android:id="@+id/hud_fragment_container"
35 android:layout_width="match_parent" 34 android:layout_width="match_parent"
36 android:layout_height="match_parent" /> 35 android:layout_height="match_parent" />
37 36
38 </RelativeLayout> 37 </RelativeLayout>
OLDNEW
« no previous file with comments | « no previous file | webrtc/examples/androidapp/res/layout/fragment_call.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698