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

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
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 xmlns:android="http://schemas.android.com/apk/res/android"
Ted C 2013/01/25 19:33:26 don't need the xmlns: here...it's only needed for
18 android:orientation="vertical"
19 android:layout_width="wrap_content"
20 android:layout_height="wrap_content"
21 android:paddingLeft="@dimen/certificate_viewer_padding"
22 android:paddingRight="@dimen/certificate_viewer_padding">
23 <TextView android:id="@+id/website_settings_headline"
24 android:layout_width="wrap_content"
25 android:layout_height="wrap_content"
26 android:textStyle="bold"/>
27 <TextView android:id="@+id/website_settings_description"
28 android:layout_width="wrap_content"
29 android:layout_height="wrap_content"/>
30 </LinearLayout>
31 </LinearLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698