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

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

Issue 1100283002: Add connection info popup within Page Info on Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Close WebsiteSettingsPopup when opening ConnectionInfoPopup Created 5 years, 8 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
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3 Copyright (c) 2013 The Chromium Authors. All rights reserved.
Ted C 2015/04/27 19:04:01 no (c) here either
tsergeant 2015/04/28 03:15:00 Done.
4
5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file.
7 -->
8 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
9 android:layout_width="match_parent"
10 android:layout_height="match_parent"
11 android:orientation="horizontal" >
12
13 <ImageView
14 android:id="@+id/connection_info_icon"
15 android:layout_width="wrap_content"
16 android:layout_height="wrap_content"
17 android:contentDescription="@null" />
18
19 <LinearLayout
20 android:id="@+id/connection_info_text_layout"
21 android:layout_width="wrap_content"
22 android:layout_height="wrap_content"
23 android:orientation="vertical"
24 android:paddingStart="@dimen/connection_info_padding_thin" >
25
26 <TextView
27 android:id="@+id/connection_info_headline"
28 android:layout_width="wrap_content"
29 android:layout_height="wrap_content"
30 android:paddingBottom="@dimen/connection_info_padding_thin"
31 android:textStyle="bold" />
32
33 <TextView
34 android:id="@+id/connection_info_description"
35 android:layout_width="wrap_content"
36 android:layout_height="wrap_content" />
37 </LinearLayout>
38
39 </LinearLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698