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

Side by Side Diff: components/web_contents_delegate_android/android/java/res/layout/color_picker_advanced_component.xml

Issue 2398543003: Move Android view based ColorPicker from ui/ to components/ (Closed)
Patch Set: add owners Created 4 years, 1 month 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 Copyright 2013 The Chromium Authors. All rights reserved. 3 Copyright 2013 The Chromium Authors. All rights reserved.
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 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 7 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
8 android:layout_width="wrap_content" 8 android:layout_width="wrap_content"
9 android:layout_height="wrap_content"> 9 android:layout_height="wrap_content">
10 10
(...skipping 26 matching lines...) Expand all
37 <SeekBar 37 <SeekBar
38 android:id="@+id/seek_bar" 38 android:id="@+id/seek_bar"
39 android:layout_width="match_parent" 39 android:layout_width="match_parent"
40 android:layout_height="75dp" 40 android:layout_height="75dp"
41 android:layout_below="@id/text" 41 android:layout_below="@id/text"
42 android:progressDrawable="@android:color/transparent" 42 android:progressDrawable="@android:color/transparent"
43 android:thumb="@drawable/color_picker_advanced_select_handle" 43 android:thumb="@drawable/color_picker_advanced_select_handle"
44 android:translationY="25dp" /> 44 android:translationY="25dp" />
45 45
46 </RelativeLayout> 46 </RelativeLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698