Index: chrome/android/webapk/shell_apk/res/layout/choose_host_browser_dialog.xml |
diff --git a/chrome/android/webapk/shell_apk/res/layout/choose_host_browser_dialog.xml b/chrome/android/webapk/shell_apk/res/layout/choose_host_browser_dialog.xml |
new file mode 100644 |
index 0000000000000000000000000000000000000000..ec9ab2e5b5c6a1bf9a74120f4c91b5baa704ddee |
--- /dev/null |
+++ b/chrome/android/webapk/shell_apk/res/layout/choose_host_browser_dialog.xml |
@@ -0,0 +1,27 @@ |
+<?xml version="1.0" encoding="utf-8"?> |
+<!-- Copyright 2017 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:orientation="vertical" |
+ android:layout_width="fill_parent" |
+ android:layout_height="match_parent"> |
+ |
+ <TextView |
+ android:id="@+id/desc" |
+ android:textColor="#000000" |
+ android:textAppearance="@android:style/TextAppearance.DeviceDefault.Small" |
+ android:paddingStart="20dip" |
+ android:layout_width="match_parent" |
+ android:layout_height="wrap_content" /> |
+ |
+ <ListView |
+ android:id="@+id/browser_list" |
+ android:layout_width="match_parent" |
+ android:layout_height="wrap_content" |
+ android:divider="@null" |
+ android:dividerHeight="0dp" /> |
+ |
+</LinearLayout> |