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

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

Issue 1541733002: Android OIB: Do not show Certificate Viewer for http connections (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/pageinfo/ConnectionInfoPopup.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 2015 The Chromium Authors. All rights reserved. 3 Copyright 2015 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 xmlns:android="http://schemas.android.com/apk/res/android" 8 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
9 android:layout_width="match_parent" 9 android:layout_width="match_parent"
10 android:layout_height="match_parent" 10 android:layout_height="match_parent"
11 android:orientation="horizontal" > 11 android:orientation="horizontal" >
12 12
13 <ImageView 13 <ImageView
14 android:id="@+id/connection_info_icon" 14 android:id="@+id/connection_info_icon"
15 android:layout_width="wrap_content" 15 android:layout_width="wrap_content"
16 android:layout_height="wrap_content" 16 android:layout_height="wrap_content"
17 android:contentDescription="@null" /> 17 android:contentDescription="@null" />
18 18
19 <LinearLayout 19 <LinearLayout
20 android:id="@+id/connection_info_text_layout" 20 android:id="@+id/connection_info_text_layout"
21 android:layout_width="wrap_content" 21 android:layout_width="wrap_content"
22 android:layout_height="wrap_content" 22 android:layout_height="wrap_content"
23 android:orientation="vertical" 23 android:orientation="vertical"
24 android:paddingBottom="@dimen/connection_info_padding_thin"
24 android:paddingStart="@dimen/connection_info_padding_thin" > 25 android:paddingStart="@dimen/connection_info_padding_thin" >
25 26
26 <TextView 27 <TextView
27 android:id="@+id/connection_info_headline" 28 android:id="@+id/connection_info_headline"
28 android:layout_width="wrap_content" 29 android:layout_width="wrap_content"
29 android:layout_height="wrap_content" 30 android:layout_height="wrap_content"
30 android:paddingBottom="@dimen/connection_info_padding_thin" 31 android:paddingBottom="@dimen/connection_info_padding_thin"
31 android:textStyle="bold" 32 android:textStyle="bold"
32 android:textColor="@color/connection_info_popup_text" /> 33 android:textColor="@color/connection_info_popup_text" />
33 34
34 <TextView 35 <TextView
35 android:id="@+id/connection_info_description" 36 android:id="@+id/connection_info_description"
36 android:layout_width="wrap_content" 37 android:layout_width="wrap_content"
37 android:layout_height="wrap_content" 38 android:layout_height="wrap_content"
38 android:textColor="@color/connection_info_popup_text" /> 39 android:textColor="@color/connection_info_popup_text" />
39 </LinearLayout> 40 </LinearLayout>
40 41
41 </LinearLayout> 42 </LinearLayout>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/pageinfo/ConnectionInfoPopup.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698