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

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

Issue 2447413006: [Offline pages] Introducing Open online button in OIB (Closed)
Patch Set: Fixing the label to capitalize all words again Created 4 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 | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/offlinepages/OfflinePageUtils.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 <!-- 2 <!--
3 Copyright 2013 The Chromium Authors. All rights reserved. 3 Copyright 2013 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 <LinearLayout 8 <LinearLayout
9 xmlns:android="http://schemas.android.com/apk/res/android" 9 xmlns:android="http://schemas.android.com/apk/res/android"
10 xmlns:chrome="http://schemas.android.com/apk/res-auto" 10 xmlns:chrome="http://schemas.android.com/apk/res-auto"
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 android:layout_height="@dimen/website_settings_popup_button_height" 75 android:layout_height="@dimen/website_settings_popup_button_height"
76 android:layout_gravity="end" 76 android:layout_gravity="end"
77 android:layout_marginEnd="@dimen/website_settings_popup_padding_sides" 77 android:layout_marginEnd="@dimen/website_settings_popup_padding_sides"
78 android:layout_marginStart="@dimen/website_settings_popup_padding_sides" 78 android:layout_marginStart="@dimen/website_settings_popup_padding_sides"
79 android:layout_marginTop="8dp" 79 android:layout_marginTop="8dp"
80 android:paddingEnd="@dimen/website_settings_popup_button_padding_sides" 80 android:paddingEnd="@dimen/website_settings_popup_button_padding_sides"
81 android:paddingStart="@dimen/website_settings_popup_button_padding_sides " 81 android:paddingStart="@dimen/website_settings_popup_button_padding_sides "
82 android:text="@string/page_info_site_settings_button" 82 android:text="@string/page_info_site_settings_button"
83 android:textColor="@color/light_active_color" 83 android:textColor="@color/light_active_color"
84 style="@style/ButtonCompatBorderless" /> 84 style="@style/ButtonCompatBorderless" />
85
86 <Button
87 android:id="@+id/website_settings_open_online_button"
88 android:layout_width="wrap_content"
89 android:layout_height="@dimen/website_settings_popup_button_height"
90 android:layout_gravity="end"
91 android:layout_marginEnd="@dimen/website_settings_popup_padding_sides"
92 android:layout_marginStart="@dimen/website_settings_popup_padding_sides"
93 android:layout_marginTop="8dp"
94 android:paddingEnd="@dimen/website_settings_popup_button_padding_sides"
95 android:paddingStart="@dimen/website_settings_popup_button_padding_sides "
96 android:text="@string/page_info_open_online_button"
97 android:textColor="@color/light_active_color"
98 style="@style/ButtonCompatBorderless" />
85 </LinearLayout> 99 </LinearLayout>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/offlinepages/OfflinePageUtils.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698