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

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

Issue 12045081: Android implementation of WebsiteSettingsUi (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/android/java/res/values/dimens.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright (c) 2013 The Chromium Authors. All rights reserved.
3
4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file.
6 -->
7 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
8 android:orientation="horizontal"
9 android:layout_width="match_parent"
10 android:layout_height="match_parent"
11 android:paddingTop="@dimen/certificate_viewer_padding"
12 android:paddingBottom="@dimen/certificate_viewer_padding">
13 <ImageView android:id="@+id/website_settings_icon"
14 android:layout_width="wrap_content"
15 android:layout_height="wrap_content"
16 android:paddingLeft="@dimen/certificate_viewer_padding"/>
17 <LinearLayout android:orientation="vertical"
18 android:layout_width="wrap_content"
19 android:layout_height="wrap_content"
20 android:paddingLeft="@dimen/certificate_viewer_padding"
21 android:paddingRight="@dimen/certificate_viewer_padding">
22 <TextView android:id="@+id/website_settings_headline"
23 android:layout_width="wrap_content"
24 android:layout_height="wrap_content"
25 android:textStyle="bold"/>
26 <TextView android:id="@+id/website_settings_description"
27 android:layout_width="wrap_content"
28 android:layout_height="wrap_content"/>
29 </LinearLayout>
30 </LinearLayout>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/res/values/dimens.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698