Chromium Code Reviews| Index: chrome/android/java/res/layout/website_settings.xml |
| diff --git a/chrome/android/java/res/layout/website_settings.xml b/chrome/android/java/res/layout/website_settings.xml |
| index 131a7dcee7dc2573170f997d5447513744be176a..6495644224e9305bafc4c5e8fd202372cc74b9f9 100644 |
| --- a/chrome/android/java/res/layout/website_settings.xml |
| +++ b/chrome/android/java/res/layout/website_settings.xml |
| @@ -26,7 +26,10 @@ |
| android:orientation="horizontal" |
| android:paddingTop="16dp" > |
| - <ImageView android:id="@+id/offline_icon" |
| + <org.chromium.chrome.browser.widget.TintedImageView |
| + xmlns:android="http://schemas.android.com/apk/res/android" |
|
newt (away)
2016/03/30 22:23:01
Don't need xmlns:android. Put xmlns:chrome in the
|
| + xmlns:chrome="http://schemas.android.com/apk/res-auto" |
| + android:id="@+id/offline_icon" |
| style="@style/LocationBarButton" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| @@ -34,7 +37,8 @@ |
| android:paddingEnd="8dp" |
| android:src="@drawable/offline_bolt" |
| android:visibility="gone" |
| - android:contentDescription="@string/page_info_offline_icon" /> |
| + android:contentDescription="@string/page_info_offline_icon" |
| + chrome:tint="@color/dark_mode_tint" /> |
| <view class="org.chromium.chrome.browser.pageinfo.WebsiteSettingsPopup$ElidedUrlTextView" |
| android:id="@+id/website_settings_url" |