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

Unified Diff: content/public/android/java/res/layout/validation_message_bubble.xml

Issue 950223002: Android: Move resources for validation message bubble to components/web_contents_delegate_android/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add per-file entries Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/public/android/java/res/drawable-xhdpi/ic_warning.png ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/android/java/res/layout/validation_message_bubble.xml
diff --git a/content/public/android/java/res/layout/validation_message_bubble.xml b/content/public/android/java/res/layout/validation_message_bubble.xml
deleted file mode 100644
index 5277e8085ac14e08033d549125fc58c0989c4264..0000000000000000000000000000000000000000
--- a/content/public/android/java/res/layout/validation_message_bubble.xml
+++ /dev/null
@@ -1,72 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright 2013 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.
--->
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:background="@drawable/bubble">
-
- <LinearLayout
- android:id="@+id/top_view"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignStart="@+id/icon_view"
- android:layout_alignEnd="@+id/text_wrapper"
- android:weightSum="1">
-
- <View
- android:layout_width="0dp"
- android:layout_height="0dp"
- android:layout_weight="0.25"
- android:visibility="invisible"/>
-
- <ImageView
- android:id="@+id/arrow_image"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginBottom="7dp"
- android:src="@drawable/bubble_arrow_up"
- android:contentDescription="@null" />
-
- </LinearLayout>
-
- <ImageView
- android:id="@id/icon_view"
- android:layout_width="19dp"
- android:layout_height="19dp"
- android:layout_alignParentStart="true"
- android:layout_below="@id/top_view"
- android:layout_marginEnd="8dp"
- android:src="@drawable/ic_warning"
- android:contentDescription="@null" />
-
- <LinearLayout
- android:id="@id/text_wrapper"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_below="@id/top_view"
- android:layout_toEndOf="@id/icon_view"
- android:orientation="vertical">
-
- <TextView
- android:id="@+id/main_text"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:maxWidth="300dp"
- android:textColor="@android:color/black"
- android:textSize="16sp" />
-
- <TextView
- android:id="@+id/sub_text"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:maxWidth="300dp"
- android:textColor="#444"
- android:textSize="13sp" />
-
- </LinearLayout>
-
-</RelativeLayout>
« no previous file with comments | « content/public/android/java/res/drawable-xhdpi/ic_warning.png ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698