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

Unified Diff: chrome/android/java/res/layout/website_settings_permission_row.xml

Issue 620983002: Add Permissions to the PageInfo dialog on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@page_info_dialog_shell_only_v2
Patch Set: Final rebase Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: chrome/android/java/res/layout/website_settings_permission_row.xml
diff --git a/chrome/android/java/res/layout/website_settings_permission_row.xml b/chrome/android/java/res/layout/website_settings_permission_row.xml
new file mode 100644
index 0000000000000000000000000000000000000000..4d3dc8f1d02f40ba515d41a630272a5892b3e347
--- /dev/null
+++ b/chrome/android/java/res/layout/website_settings_permission_row.xml
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright 2014 The Chromium Authors. All rights reserved.
+
+ Use of this source code is governed by a BSD-style license that can be
+ found in the LICENSE file.
+-->
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal"
+ android:paddingTop="18dp" >
+
+ <ImageView
+ android:id="@+id/website_settings_permission_icon"
+ android:layout_width="@dimen/website_settings_popup_permission_icon_size"
+ android:layout_height="@dimen/website_settings_popup_permission_icon_size" />
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="vertical"
+ android:paddingStart="16dp" >
+
+ <TextView
+ android:id="@+id/website_settings_permission_name"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:textColor="#444444"
+ android:textSize="14dp"
+ android:textStyle="bold" />
+
+ <Spinner
+ android:id="@+id/website_settings_permission_spinner"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content" />
+ </LinearLayout>
+
+</LinearLayout>

Powered by Google App Engine
This is Rietveld 408576698