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

Side by Side Diff: chrome/android/java/res/layout/expanded_cast_controller.xml

Issue 2888653002: [Cast,Android] Replace custom MediaController with android.widget.MediaController. (Closed)
Patch Set: Dedented the color in the xml file. Created 3 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 | « chrome/android/BUILD.gn ('k') | chrome/android/java/res/values/colors.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 <!-- Copyright 2013 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2013 The Chromium Authors. All rights reserved.
3 3
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 7
8 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 8 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
9 android:id="@+id/cast_frame_layout" 9 android:id="@+id/cast_frame_layout"
10 android:layout_width="match_parent" 10 android:layout_width="match_parent"
(...skipping 14 matching lines...) Expand all
25 android:contentDescription="@null"/> 25 android:contentDescription="@null"/>
26 <TextView 26 <TextView
27 android:id="@+id/cast_screen_title" 27 android:id="@+id/cast_screen_title"
28 android:layout_width="wrap_content" 28 android:layout_width="wrap_content"
29 android:layout_height="match_parent" 29 android:layout_height="match_parent"
30 android:layout_gravity="center" 30 android:layout_gravity="center"
31 android:gravity="center" 31 android:gravity="center"
32 android:textSize="14sp" 32 android:textSize="14sp"
33 android:textStyle="bold" 33 android:textStyle="bold"
34 android:textColor="@color/cast_media_controller_text" /> 34 android:textColor="@color/cast_media_controller_text" />
35 <org.chromium.third_party.android.media.MediaController
36 android:id="@+id/cast_media_controller"
37 android:layout_width="match_parent"
38 android:layout_height="wrap_content"
39 android:layout_gravity="bottom">
40 </org.chromium.third_party.android.media.MediaController>
41 </FrameLayout> 35 </FrameLayout>
OLDNEW
« no previous file with comments | « chrome/android/BUILD.gn ('k') | chrome/android/java/res/values/colors.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698