OLD | NEW |
---|---|
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. |
3 | 3 |
4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
5 found in the LICENSE file. | 5 found in the LICENSE file. |
6 --> | 6 --> |
7 <org.chromium.chrome.browser.firstrun.AccountFirstRunView | 7 <org.chromium.chrome.browser.signin.AccountSigninView |
8 xmlns:android="http://schemas.android.com/apk/res/android" | 8 xmlns:android="http://schemas.android.com/apk/res/android" |
9 xmlns:chrome="http://schemas.android.com/apk/res-auto" | 9 xmlns:chrome="http://schemas.android.com/apk/res-auto" |
10 android:id="@+id/fre_account_layout" | 10 android:id="@+id/fre_account_layout" |
Yusuf
2016/02/18 19:16:16
let's get rid of the fre mentions in other places
PEConn
2016/02/19 18:10:10
Done.
| |
11 android:layout_width="match_parent" | 11 android:layout_width="match_parent" |
12 android:layout_height="match_parent" > | 12 android:layout_height="match_parent" > |
13 | 13 |
14 <ScrollView | 14 <ScrollView |
15 android:layout_width="match_parent" | 15 android:layout_width="match_parent" |
16 android:layout_height="match_parent" | 16 android:layout_height="match_parent" |
17 android:layout_marginBottom="76dp" | 17 android:layout_marginBottom="76dp" |
18 android:fillViewport="true" | 18 android:fillViewport="true" |
19 android:scrollbarStyle="outsideOverlay" > | 19 android:scrollbarStyle="outsideOverlay" > |
20 | 20 |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
143 chrome:buttonColor="@color/light_active_color" /> | 143 chrome:buttonColor="@color/light_active_color" /> |
144 | 144 |
145 <View | 145 <View |
146 android:id="@+id/positive_button_end_padding" | 146 android:id="@+id/positive_button_end_padding" |
147 android:layout_width="0dp" | 147 android:layout_width="0dp" |
148 android:layout_height="0dp" | 148 android:layout_height="0dp" |
149 android:layout_weight="1" | 149 android:layout_weight="1" |
150 android:visibility="gone"/> | 150 android:visibility="gone"/> |
151 </LinearLayout> | 151 </LinearLayout> |
152 | 152 |
153 </org.chromium.chrome.browser.firstrun.AccountFirstRunView> | 153 </org.chromium.chrome.browser.signin.AccountSigninView> |
OLD | NEW |