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

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

Issue 900103002: Fix random lint warnings in chrome/android/shell (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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
« no previous file with comments | « no previous file | chrome/android/shell/res/layout/suggestion_item.xml » ('j') | 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 21 matching lines...) Expand all
32 android:layout_height="38dp" 32 android:layout_height="38dp"
33 android:src="@drawable/btn_close" 33 android:src="@drawable/btn_close"
34 android:background="?attr/selectableItemBackground" 34 android:background="?attr/selectableItemBackground"
35 android:scaleType="center"/> 35 android:scaleType="center"/>
36 <EditText android:id="@+id/url" 36 <EditText android:id="@+id/url"
37 android:layout_width="0dp" 37 android:layout_width="0dp"
38 android:layout_height="wrap_content" 38 android:layout_height="wrap_content"
39 android:layout_weight="1" 39 android:layout_weight="1"
40 android:gravity="bottom" 40 android:gravity="bottom"
41 android:textSize="18sp" 41 android:textSize="18sp"
42 android:autoText="true"
43 android:capitalize="sentences"
44 android:singleLine="true" 42 android:singleLine="true"
45 android:selectAllOnFocus="true" 43 android:selectAllOnFocus="true"
46 android:hint="@string/url_hint" 44 android:hint="@string/url_hint"
47 android:inputType="textUri" 45 android:inputType="textUri"
48 android:imeOptions="actionGo|flagNoExtractUi" /> 46 android:imeOptions="actionGo|flagNoExtractUi" />
49 <org.chromium.chrome.browser.widget.TintedImageButton 47 <org.chromium.chrome.browser.widget.TintedImageButton
50 android:id="@+id/tab_switcher" 48 android:id="@+id/tab_switcher"
51 android:layout_width="38dp" 49 android:layout_width="38dp"
52 android:layout_height="38dp" 50 android:layout_height="38dp"
53 android:src="@drawable/btn_tabswitcher" 51 android:src="@drawable/btn_tabswitcher"
(...skipping 16 matching lines...) Expand all
70 android:layout_height="2dp" 68 android:layout_height="2dp"
71 android:progress="0" /> 69 android:progress="0" />
72 </org.chromium.chrome.shell.ChromeShellToolbar> 70 </org.chromium.chrome.shell.ChromeShellToolbar>
73 <FrameLayout android:id="@+id/content_container" 71 <FrameLayout android:id="@+id/content_container"
74 android:layout_width="match_parent" 72 android:layout_width="match_parent"
75 android:layout_height="0dp" 73 android:layout_height="0dp"
76 android:layout_weight="1"> 74 android:layout_weight="1">
77 </FrameLayout> 75 </FrameLayout>
78 76
79 </org.chromium.chrome.shell.TabManager> 77 </org.chromium.chrome.shell.TabManager>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/shell/res/layout/suggestion_item.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698