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

Side by Side Diff: chrome/android/java/res/values-v21/styles.xml

Issue 2232893002: Display text prompting user to set screen lock in order to view password in PasswordEntryEditor Base URL: https://chromium.googlesource.com/chromium/src.git@reauthentication
Patch Set: Revert display condition Created 4 years, 4 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 <!-- Copyright 2014 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2014 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 <resources> 6 <resources>
7 <style name="RobotoMediumStyle"> 7 <style name="RobotoMediumStyle">
8 <item name="android:fontFamily">sans-serif-medium</item> 8 <item name="android:fontFamily">sans-serif-medium</item>
9 </style> 9 </style>
10 <!-- Preferences --> 10 <!-- Preferences -->
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 <style name="MainTheme.LowEnd" parent="MainTheme"> 132 <style name="MainTheme.LowEnd" parent="MainTheme">
133 <item name="android:popupWindowStyle">@style/ListPopupWindow.LowEnd</ite m> 133 <item name="android:popupWindowStyle">@style/ListPopupWindow.LowEnd</ite m>
134 <item name="android:listPopupWindowStyle">@style/ListPopupWindow.LowEnd< /item> 134 <item name="android:listPopupWindowStyle">@style/ListPopupWindow.LowEnd< /item>
135 <item name="android:spinnerStyle">@style/Spinner.LowEnd</item> 135 <item name="android:spinnerStyle">@style/Spinner.LowEnd</item>
136 <item name="android:autoCompleteTextViewStyle">@style/AutoCompleteTextVi ew.LowEnd</item> 136 <item name="android:autoCompleteTextViewStyle">@style/AutoCompleteTextVi ew.LowEnd</item>
137 137
138 <!-- Without HW acceleration the default text cursor looks weird (top 138 <!-- Without HW acceleration the default text cursor looks weird (top
139 half is way brighter than the bottom), so we use our own. --> 139 half is way brighter than the bottom), so we use our own. -->
140 <item name="android:textCursorDrawable">@drawable/text_cursor_lowend</it em> 140 <item name="android:textCursorDrawable">@drawable/text_cursor_lowend</it em>
141 </style> 141 </style>
142
143 <!-- Password-related text on Password Entry Editor -->
144 <style name="PasswordEntryEditorTextView" parent="MainTheme">
145 <item name="android:textColor">@color/default_text_color</item>
146 <item name="android:layout_width">match_parent</item>
147 <item name="android:layout_height">match_parent</item>
148 <item name="android:textAppearance">?android:attr/textAppearanceMedium</ item>
149 </style>
142 </resources> 150 </resources>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698