Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 | 4 |
| 5 Use of this source code is governed by a BSD-style license that can be | 5 Use of this source code is governed by a BSD-style license that can be |
| 6 found in the LICENSE file. | 6 found in the LICENSE file. |
| 7 --> | 7 --> |
| 8 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | 8 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 9 android:layout_width="match_parent" | 9 android:layout_width="match_parent" |
| 10 android:layout_height="match_parent" | 10 android:layout_height="match_parent" |
| (...skipping 14 matching lines...) Expand all Loading... | |
| 25 android:layout_height="wrap_content" | 25 android:layout_height="wrap_content" |
| 26 android:orientation="horizontal" | 26 android:orientation="horizontal" |
| 27 android:paddingTop="16dp" > | 27 android:paddingTop="16dp" > |
| 28 | 28 |
| 29 <ImageView android:id="@+id/offline_icon" | 29 <ImageView android:id="@+id/offline_icon" |
| 30 style="@style/LocationBarButton" | 30 style="@style/LocationBarButton" |
| 31 android:layout_width="wrap_content" | 31 android:layout_width="wrap_content" |
| 32 android:layout_height="wrap_content" | 32 android:layout_height="wrap_content" |
| 33 android:layout_gravity="start|top" | 33 android:layout_gravity="start|top" |
| 34 android:paddingEnd="8dp" | 34 android:paddingEnd="8dp" |
| 35 android:tint="@color/locationbar_status_color" | |
|
fgorski
2016/03/01 21:45:38
This is needed only when the default icon does not
fgorski
2016/03/02 20:53:50
Done. Obsoleted by the new resource.
| |
| 36 android:tintMode="src_in" | |
| 35 android:src="@drawable/offline_bolt" | 37 android:src="@drawable/offline_bolt" |
| 36 android:visibility="gone" | 38 android:visibility="gone" |
| 37 android:contentDescription="@string/page_info_offline_icon" /> | 39 android:contentDescription="@string/page_info_offline_icon" /> |
| 38 | 40 |
| 39 <view class="org.chromium.chrome.browser.pageinfo.WebsiteSettingsPop up$ElidedUrlTextView" | 41 <view class="org.chromium.chrome.browser.pageinfo.WebsiteSettingsPop up$ElidedUrlTextView" |
| 40 android:id="@+id/website_settings_url" | 42 android:id="@+id/website_settings_url" |
| 41 android:layout_width="match_parent" | 43 android:layout_width="match_parent" |
| 42 android:layout_height="wrap_content" | 44 android:layout_height="wrap_content" |
| 43 android:ellipsize="end" | 45 android:ellipsize="end" |
| 44 android:lineSpacingExtra="6dp" | 46 android:lineSpacingExtra="6dp" |
| (...skipping 29 matching lines...) Expand all Loading... | |
| 74 android:layout_gravity="end" | 76 android:layout_gravity="end" |
| 75 android:layout_marginEnd="@dimen/website_settings_popup_padding_sides" | 77 android:layout_marginEnd="@dimen/website_settings_popup_padding_sides" |
| 76 android:layout_marginStart="@dimen/website_settings_popup_padding_sides" | 78 android:layout_marginStart="@dimen/website_settings_popup_padding_sides" |
| 77 android:layout_marginTop="8dp" | 79 android:layout_marginTop="8dp" |
| 78 android:paddingEnd="@dimen/website_settings_popup_button_padding_sides" | 80 android:paddingEnd="@dimen/website_settings_popup_button_padding_sides" |
| 79 android:paddingStart="@dimen/website_settings_popup_button_padding_sides " | 81 android:paddingStart="@dimen/website_settings_popup_button_padding_sides " |
| 80 android:text="@string/page_info_site_settings_button" | 82 android:text="@string/page_info_site_settings_button" |
| 81 android:textColor="@color/light_active_color" | 83 android:textColor="@color/light_active_color" |
| 82 style="@style/ButtonCompatBorderless" /> | 84 style="@style/ButtonCompatBorderless" /> |
| 83 </LinearLayout> | 85 </LinearLayout> |
| OLD | NEW |