| 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>
|
|
|