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

Side by Side Diff: chrome/android/shell/res/layout/chrome_shell_activity.xml

Issue 690123002: Switch to using TintedImageButton where possible. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « chrome/android/java/src/org/chromium/chrome/browser/widget/TintedImageButton.java ('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.shell.TabManager android:id="@+id/tab_manager" 9 <org.chromium.chrome.shell.TabManager android:id="@+id/tab_manager"
10 xmlns:android="http://schemas.android.com/apk/res/android" 10 xmlns:android="http://schemas.android.com/apk/res/android"
(...skipping 30 matching lines...) Expand all
41 android:layout_width="38dp" 41 android:layout_width="38dp"
42 android:layout_height="38dp" 42 android:layout_height="38dp"
43 android:src="@drawable/btn_tabswitcher_white_normal" 43 android:src="@drawable/btn_tabswitcher_white_normal"
44 android:background="?android:attr/selectableItemBackground" 44 android:background="?android:attr/selectableItemBackground"
45 android:scaleType="center" 45 android:scaleType="center"
46 android:contentDescription="@null"/> 46 android:contentDescription="@null"/>
47 <org.chromium.chrome.browser.widget.TintedImageButton 47 <org.chromium.chrome.browser.widget.TintedImageButton
48 android:id="@+id/menu_button" 48 android:id="@+id/menu_button"
49 android:layout_width="38dp" 49 android:layout_width="38dp"
50 android:layout_height="38dp" 50 android:layout_height="38dp"
51 android:src="@drawable/btn_menu_white_normal" 51 android:src="@drawable/btn_menu"
52 android:background="?android:attr/selectableItemBackground" 52 android:background="?android:attr/selectableItemBackground"
53 android:scaleType="center"/> 53 android:scaleType="center"/>
54 </org.chromium.chrome.shell.ChromeShellToolbar> 54 </org.chromium.chrome.shell.ChromeShellToolbar>
55 <FrameLayout android:id="@+id/content_container" 55 <FrameLayout android:id="@+id/content_container"
56 android:layout_width="match_parent" 56 android:layout_width="match_parent"
57 android:layout_height="0dp" 57 android:layout_height="0dp"
58 android:layout_weight="1"> 58 android:layout_weight="1">
59 </FrameLayout> 59 </FrameLayout>
60 60
61 </org.chromium.chrome.shell.TabManager> 61 </org.chromium.chrome.shell.TabManager>
OLDNEW
« no previous file with comments | « chrome/android/java/src/org/chromium/chrome/browser/widget/TintedImageButton.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698