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

Unified Diff: chrome/android/java/res/layout/new_tab_page_status_card.xml

Issue 2061803002: 📰 The Status card reports disabled sync states (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@simplifyBridge
Patch Set: fix compilation: origins Created 4 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 side-by-side diff with in-line comments
Download patch
Index: chrome/android/java/res/layout/new_tab_page_status_card.xml
diff --git a/chrome/android/java/res/layout/new_tab_page_status_card.xml b/chrome/android/java/res/layout/new_tab_page_status_card.xml
index e66065ef6bc6a48921829d03df448d9eaf5522d1..c27adcfad107f17de90c4d56a83f2e0686183e11 100644
--- a/chrome/android/java/res/layout/new_tab_page_status_card.xml
+++ b/chrome/android/java/res/layout/new_tab_page_status_card.xml
@@ -15,8 +15,7 @@
android:background="@color/snippets_background_color">
<org.chromium.ui.widget.TextViewWithLeading
- android:id="@+id/status_headline"
- android:text="@string/ntp_status_card_title_empty"
+ android:id="@+id/status_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="16sp"
@@ -24,8 +23,7 @@
chrome:leading="24dp" />
<org.chromium.ui.widget.TextViewWithLeading
- android:id="@+id/status_snippet"
- android:text="@string/ntp_status_card_body_empty"
+ android:id="@+id/status_body"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
@@ -37,13 +35,12 @@
supposed to have 8dp margin while we have a 16dp margin at the parent
level. -->
<Button
- android:id="@+id/reload_button"
+ android:id="@+id/status_action_button"
style="@style/ButtonCompatBorderless"
android:layout_marginTop="16dp"
android:layout_marginEnd="-8dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:text="@string/reload"
android:textAllCaps="true"
android:textColor="@color/light_active_color"
android:textSize="15sp" />

Powered by Google App Engine
This is Rietveld 408576698