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 18 matching lines...) Expand all Loading... |
29 android:orientation="horizontal" | 29 android:orientation="horizontal" |
30 android:id="@+id/button_wrapper" | 30 android:id="@+id/button_wrapper" |
31 android:visibility="gone"> | 31 android:visibility="gone"> |
32 | 32 |
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/btn_tabstrip_incognito_switch" |
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 <View | 43 <View |
44 android:layout_width="1px" | 44 android:layout_width="1px" |
45 android:layout_height="18dp" | 45 android:layout_height="18dp" |
46 android:layout_gravity="center_vertical" | 46 android:layout_gravity="center_vertical" |
47 android:background="#292929" /> | 47 android:background="#292929" /> |
48 | 48 |
49 <ImageButton | 49 <ImageButton |
50 android:id="@+id/incognito_tabs_button" | 50 android:id="@+id/incognito_tabs_button" |
51 android:layout_width="0dp" | 51 android:layout_width="0dp" |
52 android:layout_height="wrap_content" | 52 android:layout_height="wrap_content" |
53 android:layout_weight="1" | 53 android:layout_weight="1" |
54 android:src="@drawable/tabstrip_incognito_switch_incognito" | 54 android:src="@drawable/btn_tabstrip_incognito_switch_incognito" |
55 android:background="@drawable/ntp_toolbar_button_background" | 55 android:background="@drawable/ntp_toolbar_button_background" |
56 android:contentDescription="@string/accessibility_tab_switcher_incog
nito_stack" | 56 android:contentDescription="@string/accessibility_tab_switcher_incog
nito_stack" |
57 style="?android:attr/borderlessButtonStyle" /> | 57 style="?android:attr/borderlessButtonStyle" /> |
58 </LinearLayout> | 58 </LinearLayout> |
59 </org.chromium.chrome.browser.widget.accessibility.AccessibilityTabModelWrapper> | 59 </org.chromium.chrome.browser.widget.accessibility.AccessibilityTabModelWrapper> |
OLD | NEW |