OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 | 2 |
3 <!-- Copyright 2014 The Chromium Authors. All rights reserved. | 3 <!-- Copyright 2014 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 | 8 |
9 <org.chromium.chrome.browser.widget.accessibility.AccessibilityTabModelWrapper | 9 <org.chromium.chrome.browser.widget.accessibility.AccessibilityTabModelWrapper |
10 xmlns:android="http://schemas.android.com/apk/res/android" | 10 xmlns:android="http://schemas.android.com/apk/res/android" |
(...skipping 22 matching lines...) Expand all Loading... |
33 <ImageButton | 33 <ImageButton |
34 android:id="@+id/standard_tabs_button" | 34 android:id="@+id/standard_tabs_button" |
35 android:layout_width="0dp" | 35 android:layout_width="0dp" |
36 android:layout_height="wrap_content" | 36 android:layout_height="wrap_content" |
37 android:layout_weight="1" | 37 android:layout_weight="1" |
38 android:background="@drawable/ntp_toolbar_button_background_selected
" | 38 android:background="@drawable/ntp_toolbar_button_background_selected
" |
39 android:src="@drawable/tabstrip_incognito_switch_normal" | 39 android:src="@drawable/tabstrip_incognito_switch_normal" |
40 android:contentDescription="@string/accessibility_tab_switcher_stand
ard_stack" | 40 android:contentDescription="@string/accessibility_tab_switcher_stand
ard_stack" |
41 style="?android:attr/borderlessButtonStyle" /> | 41 style="?android:attr/borderlessButtonStyle" /> |
42 | 42 |
43 <ImageView | 43 <View |
44 android:layout_width="wrap_content" | 44 android:layout_width="1px" |
45 android:layout_height="wrap_content" | 45 android:layout_height="18dp" |
46 android:layout_gravity="center_vertical" | 46 android:layout_gravity="center_vertical" |
47 android:src="@drawable/incognito_separator" | 47 android:background="#292929" /> |
48 android:contentDescription="@null" /> | |
49 | 48 |
50 <ImageButton | 49 <ImageButton |
51 android:id="@+id/incognito_tabs_button" | 50 android:id="@+id/incognito_tabs_button" |
52 android:layout_width="0dp" | 51 android:layout_width="0dp" |
53 android:layout_height="wrap_content" | 52 android:layout_height="wrap_content" |
54 android:layout_weight="1" | 53 android:layout_weight="1" |
55 android:src="@drawable/tabstrip_incognito_switch_incognito" | 54 android:src="@drawable/tabstrip_incognito_switch_incognito" |
56 android:background="@drawable/ntp_toolbar_button_background" | 55 android:background="@drawable/ntp_toolbar_button_background" |
57 android:contentDescription="@string/accessibility_tab_switcher_incog
nito_stack" | 56 android:contentDescription="@string/accessibility_tab_switcher_incog
nito_stack" |
58 style="?android:attr/borderlessButtonStyle" /> | 57 style="?android:attr/borderlessButtonStyle" /> |
59 </LinearLayout> | 58 </LinearLayout> |
60 </org.chromium.chrome.browser.widget.accessibility.AccessibilityTabModelWrapper> | 59 </org.chromium.chrome.browser.widget.accessibility.AccessibilityTabModelWrapper> |
OLD | NEW |