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

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

Issue 339293002: Include all resolutions for several image assets. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « chrome/android/java/res/drawable-xhdpi/ntp_toolbar_button_background_selected_pressed_img.png ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 22 matching lines...) Expand all
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>
OLDNEW
« no previous file with comments | « chrome/android/java/res/drawable-xhdpi/ntp_toolbar_button_background_selected_pressed_img.png ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698