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

Side by Side Diff: components/web_contents_delegate_android/android/java/res/layout/color_picker_dialog_title.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 <!-- Copyright 2013 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2013 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 found in the LICENSE file.
5 --> 5 -->
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="match_parent" 8 android:layout_width="match_parent"
9 android:layout_height="wrap_content" 9 android:layout_height="wrap_content"
10 android:paddingBottom="15dp" 10 android:paddingBottom="15dp"
(...skipping 21 matching lines...) Expand all
32 android:padding="2dp"> 32 android:padding="2dp">
33 33
34 <View 34 <View
35 android:id="@+id/selected_color_view" 35 android:id="@+id/selected_color_view"
36 android:layout_width="match_parent" 36 android:layout_width="match_parent"
37 android:layout_height="match_parent" 37 android:layout_height="match_parent"
38 android:background="@android:color/black" /> 38 android:background="@android:color/black" />
39 </FrameLayout> 39 </FrameLayout>
40 40
41 </RelativeLayout> 41 </RelativeLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698