Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Side by Side Diff: chrome/android/java/res/layout/accessibility_tab_switcher.xml

Issue 408253003: Refreshing the tab switcher assets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698