| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2015 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 <LinearLayout | 6 <LinearLayout |
| 7 xmlns:android="http://schemas.android.com/apk/res/android" | 7 xmlns:android="http://schemas.android.com/apk/res/android" |
| 8 xmlns:chrome="http://schemas.android.com/apk/res-auto" | 8 xmlns:chrome="http://schemas.android.com/apk/res-auto" |
| 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:minHeight="@dimen/enhanced_bookmark_minimum_dialog_size_tablet" | 11 android:minHeight="@dimen/bookmark_minimum_dialog_size_tablet" |
| 12 android:orientation="vertical" > | 12 android:orientation="vertical" > |
| 13 | 13 |
| 14 <android.support.v7.widget.Toolbar | 14 <android.support.v7.widget.Toolbar |
| 15 android:id="@+id/toolbar" | 15 android:id="@+id/toolbar" |
| 16 android:layout_width="match_parent" | 16 android:layout_width="match_parent" |
| 17 android:layout_height="?attr/actionBarSize" | 17 android:layout_height="?attr/actionBarSize" |
| 18 android:background="?attr/colorPrimary" /> | 18 android:background="?attr/colorPrimary" /> |
| 19 | 19 |
| 20 <View | 20 <View |
| 21 android:layout_width="match_parent" | 21 android:layout_width="match_parent" |
| 22 android:layout_height="4dp" | 22 android:layout_height="4dp" |
| 23 android:layout_marginBottom="-4dp" | 23 android:layout_marginBottom="-4dp" |
| 24 android:background="@drawable/eb_title_bar_shadow" /> | 24 android:background="@drawable/bookmark_title_bar_shadow" /> |
| 25 | 25 |
| 26 <ScrollView | 26 <ScrollView |
| 27 android:layout_width="match_parent" | 27 android:layout_width="match_parent" |
| 28 android:layout_height="match_parent" > | 28 android:layout_height="match_parent" > |
| 29 | 29 |
| 30 <LinearLayout | 30 <LinearLayout |
| 31 android:layout_width="match_parent" | 31 android:layout_width="match_parent" |
| 32 android:layout_height="wrap_content" | 32 android:layout_height="wrap_content" |
| 33 android:orientation="vertical" | 33 android:orientation="vertical" |
| 34 android:clipToPadding="false" > | 34 android:clipToPadding="false" > |
| (...skipping 11 matching lines...) Expand all Loading... |
| 46 android:textSize="24sp" | 46 android:textSize="24sp" |
| 47 chrome:alertMessage="@string/bookmark_missing_title" /> | 47 chrome:alertMessage="@string/bookmark_missing_title" /> |
| 48 | 48 |
| 49 <TextView | 49 <TextView |
| 50 android:layout_width="wrap_content" | 50 android:layout_width="wrap_content" |
| 51 android:layout_height="wrap_content" | 51 android:layout_height="wrap_content" |
| 52 android:layout_marginBottom="4dp" | 52 android:layout_marginBottom="4dp" |
| 53 android:layout_marginEnd="16dp" | 53 android:layout_marginEnd="16dp" |
| 54 android:layout_marginStart="16dp" | 54 android:layout_marginStart="16dp" |
| 55 android:layout_marginTop="24dp" | 55 android:layout_marginTop="24dp" |
| 56 android:text="@string/enhanced_bookmark_parent_folder" | 56 android:text="@string/bookmark_parent_folder" |
| 57 android:textColor="@color/enhanced_bookmark_detail_section" | 57 android:textColor="@color/bookmark_detail_section" |
| 58 android:textSize="14sp" | 58 android:textSize="14sp" |
| 59 android:textStyle="bold" /> | 59 android:textStyle="bold" /> |
| 60 | 60 |
| 61 <TextView | 61 <TextView |
| 62 android:id="@+id/parent_folder" | 62 android:id="@+id/parent_folder" |
| 63 android:layout_width="match_parent" | 63 android:layout_width="match_parent" |
| 64 android:layout_height="wrap_content" | 64 android:layout_height="wrap_content" |
| 65 android:layout_marginStart="16dp" | 65 android:layout_marginStart="16dp" |
| 66 android:layout_marginTop="8dp" | 66 android:layout_marginTop="8dp" |
| 67 android:layout_marginBottom="32dp" | 67 android:layout_marginBottom="32dp" |
| 68 android:textColor="@color/dark_mode_tint" | 68 android:textColor="@color/dark_mode_tint" |
| 69 android:textSize="16sp" /> | 69 android:textSize="16sp" /> |
| 70 </LinearLayout> | 70 </LinearLayout> |
| 71 </ScrollView> | 71 </ScrollView> |
| 72 | 72 |
| 73 </LinearLayout> | 73 </LinearLayout> |
| OLD | NEW |