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

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

Issue 2617413003: [Android History] Add accessibility support (Closed)
Patch Set: Rebase Created 3 years, 11 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/java/src/org/chromium/chrome/browser/download/ui/DownloadManagerToolbar.java » ('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 <!-- Copyright 2016 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2016 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. --> 4 found in the LICENSE file. -->
5 5
6 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 6 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
7 android:layout_width="match_parent" 7 android:layout_width="match_parent"
8 android:layout_height="wrap_content" 8 android:layout_height="wrap_content"
9 android:orientation="vertical" > 9 android:orientation="vertical" >
10 10
11 <TextView 11 <org.chromium.ui.widget.TextViewWithClickableSpans
12 android:id="@+id/signed_in_not_synced" 12 android:id="@+id/signed_in_not_synced"
13 style="@style/PrivacyDisclaimerText" /> 13 style="@style/PrivacyDisclaimerText" />
14 14
15 <TextView 15 <org.chromium.ui.widget.TextViewWithClickableSpans
16 android:id="@+id/signed_in_synced" 16 android:id="@+id/signed_in_synced"
17 style="@style/PrivacyDisclaimerText" /> 17 style="@style/PrivacyDisclaimerText" />
18 18
19 <TextView 19 <org.chromium.ui.widget.TextViewWithClickableSpans
20 android:id="@+id/other_forms_of_browsing_history" 20 android:id="@+id/other_forms_of_browsing_history"
21 style="@style/PrivacyDisclaimerText" /> 21 style="@style/PrivacyDisclaimerText" />
22 22
23 <Button 23 <Button
24 android:id="@+id/clear_browsing_data_button" 24 android:id="@+id/clear_browsing_data_button"
25 android:layout_width="match_parent" 25 android:layout_width="match_parent"
26 android:layout_height="wrap_content" 26 android:layout_height="wrap_content"
27 android:layout_marginTop="16dp" 27 android:layout_marginTop="16dp"
28 style="@style/ButtonCompatBorderless" 28 style="@style/ButtonCompatBorderless"
29 android:paddingTop="16dp" 29 android:paddingTop="16dp"
30 android:paddingBottom="16dp" 30 android:paddingBottom="16dp"
31 android:paddingStart="16dp" 31 android:paddingStart="16dp"
32 android:paddingEnd="16dp" 32 android:paddingEnd="16dp"
33 android:gravity="center_vertical|start" 33 android:gravity="center_vertical|start"
34 android:text="@string/open_clear_browsing_data_dialog_button" 34 android:text="@string/open_clear_browsing_data_dialog_button"
35 android:textAllCaps="true" 35 android:textAllCaps="true"
36 android:textColor="@color/light_active_color" 36 android:textColor="@color/light_active_color"
37 android:textSize="16sp" /> 37 android:textSize="16sp" />
38 </LinearLayout> 38 </LinearLayout>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/download/ui/DownloadManagerToolbar.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698