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

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

Issue 2938103002: ran git cl format webrtc/sdk/android/
Patch Set: Created 3 years, 6 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
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 2
3 <merge xmlns:android="http://schemas.android.com/apk/res/android"> 3 <merge xmlns:android="http://schemas.android.com/apk/res/android">
4 4
5 <org.webrtc.SurfaceViewRenderer 5 <org.webrtc.TextureViewRenderer
6 android:id="@+id/fullscreen_video_view" 6 android:id="@+id/fullscreen_video_view"
7 android:layout_width="match_parent" 7 android:layout_width="match_parent"
8 android:layout_height="match_parent" /> 8 android:layout_height="match_parent" />
9 9
10 <org.webrtc.SurfaceViewRenderer 10 <org.webrtc.SurfaceViewRenderer
11 android:id="@+id/pip_video_view" 11 android:id="@+id/pip_video_view"
12 android:layout_height="144dp" 12 android:layout_height="144dp"
13 android:layout_width="wrap_content" 13 android:layout_width="wrap_content"
14 android:layout_gravity="bottom|end" 14 android:layout_gravity="bottom|end"
15 android:layout_margin="16dp"/> 15 android:layout_margin="16dp"/>
16 16
17 <FrameLayout 17 <FrameLayout
18 android:id="@+id/call_fragment_container" 18 android:id="@+id/call_fragment_container"
19 android:layout_width="match_parent" 19 android:layout_width="match_parent"
20 android:layout_height="match_parent" /> 20 android:layout_height="match_parent" />
21 <FrameLayout 21 <FrameLayout
22 android:id="@+id/hud_fragment_container" 22 android:id="@+id/hud_fragment_container"
23 android:layout_width="match_parent" 23 android:layout_width="match_parent"
24 android:layout_height="match_parent" /> 24 android:layout_height="match_parent" />
25 25
26 </merge> 26 </merge>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698