| 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" |
| 11 android:paddingBottom="8dp" | 11 android:paddingBottom="8dp" |
| 12 android:background="#ffffff" | 12 android:background="#ffffff" |
| 13 android:orientation="vertical" > | 13 android:orientation="vertical" > |
| 14 | 14 |
| 15 <LinearLayout | 15 <LinearLayout |
| 16 android:layout_width="match_parent" | 16 android:layout_width="match_parent" |
| 17 android:layout_height="wrap_content" | 17 android:layout_height="wrap_content" |
| 18 android:orientation="vertical" | 18 android:orientation="vertical" |
| 19 android:paddingBottom="12dp" | 19 android:paddingBottom="12dp" |
| 20 android:paddingEnd="@dimen/website_settings_popup_padding_sides" | 20 android:paddingEnd="@dimen/website_settings_popup_padding_sides" |
| 21 android:paddingStart="@dimen/website_settings_popup_padding_sides" > | 21 android:paddingStart="@dimen/website_settings_popup_padding_sides" > |
| 22 | 22 |
| 23 <view class="org.chromium.chrome.browser.pageinfo.WebsiteSettingsPopup$E
lidedUrlTextView" | 23 <LinearLayout |
| 24 android:id="@+id/website_settings_url" | |
| 25 android:layout_width="match_parent" | 24 android:layout_width="match_parent" |
| 26 android:layout_height="wrap_content" | 25 android:layout_height="wrap_content" |
| 27 android:ellipsize="end" | 26 android:orientation="horizontal" |
| 28 android:lineSpacingExtra="6dp" | 27 android:paddingTop="16dp" > |
| 29 android:paddingTop="16dp" | 28 |
| 30 android:textAlignment="viewStart" | 29 <ImageView android:id="@+id/offline_icon" |
| 31 android:textColor="@color/url_emphasis_default_text" | 30 style="@style/LocationBarButton" |
| 32 android:textSize="16sp"/> | 31 android:layout_width="wrap_content" |
| 32 android:layout_height="wrap_content" |
| 33 android:layout_gravity="start|top" |
| 34 android:paddingEnd="12dp" |
| 35 android:src="@drawable/offline_bolt" |
| 36 android:visibility="gone" |
| 37 android:contentDescription="@string/page_info_offline_icon" /> |
| 38 |
| 39 <view class="org.chromium.chrome.browser.pageinfo.WebsiteSettingsPop
up$ElidedUrlTextView" |
| 40 android:id="@+id/website_settings_url" |
| 41 android:layout_width="match_parent" |
| 42 android:layout_height="wrap_content" |
| 43 android:ellipsize="end" |
| 44 android:lineSpacingExtra="6dp" |
| 45 android:textAlignment="viewStart" |
| 46 android:textColor="@color/url_emphasis_default_text" |
| 47 android:textSize="16sp"/> |
| 48 |
| 49 </LinearLayout> |
| 33 | 50 |
| 34 <TextView | 51 <TextView |
| 35 android:id="@+id/website_settings_connection_message" | 52 android:id="@+id/website_settings_connection_message" |
| 36 android:layout_width="match_parent" | 53 android:layout_width="match_parent" |
| 37 android:layout_height="wrap_content" | 54 android:layout_height="wrap_content" |
| 38 android:lineSpacingExtra="3dp" | 55 android:lineSpacingExtra="3dp" |
| 39 android:paddingTop="8dp" | 56 android:paddingTop="8dp" |
| 40 android:textColor="@color/website_settings_popup_text" | 57 android:textColor="@color/website_settings_popup_text" |
| 41 android:textSize="14sp" /> | 58 android:textSize="14sp" /> |
| 42 </LinearLayout> | 59 </LinearLayout> |
| (...skipping 14 matching lines...) Expand all Loading... |
| 57 android:layout_gravity="end" | 74 android:layout_gravity="end" |
| 58 android:layout_marginEnd="@dimen/website_settings_popup_padding_sides" | 75 android:layout_marginEnd="@dimen/website_settings_popup_padding_sides" |
| 59 android:layout_marginStart="@dimen/website_settings_popup_padding_sides" | 76 android:layout_marginStart="@dimen/website_settings_popup_padding_sides" |
| 60 android:layout_marginTop="8dp" | 77 android:layout_marginTop="8dp" |
| 61 android:paddingEnd="@dimen/website_settings_popup_button_padding_sides" | 78 android:paddingEnd="@dimen/website_settings_popup_button_padding_sides" |
| 62 android:paddingStart="@dimen/website_settings_popup_button_padding_sides
" | 79 android:paddingStart="@dimen/website_settings_popup_button_padding_sides
" |
| 63 android:text="@string/page_info_site_settings_button" | 80 android:text="@string/page_info_site_settings_button" |
| 64 android:textColor="@color/light_active_color" | 81 android:textColor="@color/light_active_color" |
| 65 style="@style/ButtonCompatBorderless" /> | 82 style="@style/ButtonCompatBorderless" /> |
| 66 </LinearLayout> | 83 </LinearLayout> |
| OLD | NEW |