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

Unified Diff: content/shell/android/java/res/layout/shell_view.xml

Issue 513183002: Adding option for Stop/Reload in location bar for content shell. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Nits resolved Created 6 years, 4 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: content/shell/android/java/res/layout/shell_view.xml
diff --git a/content/shell/android/java/res/layout/shell_view.xml b/content/shell/android/java/res/layout/shell_view.xml
index d6c15d6f91f855af81c6a6550043c5fae7e1226a..f60d45780c8f154d63e8830271ac37eceb707064 100644
--- a/content/shell/android/java/res/layout/shell_view.xml
+++ b/content/shell/android/java/res/layout/shell_view.xml
@@ -17,6 +17,16 @@
android:layout_height="wrap_content"
android:orientation="horizontal"
android:background="@drawable/progress">
+ <ImageButton android:id="@+id/stop"
+ android:layout_width="38dp"
+ android:layout_height="38dp"
+ android:src="@android:drawable/ic_menu_close_clear_cancel"
+ android:scaleType="center" />
+ <ImageButton android:id="@+id/reload"
+ android:layout_width="38dp"
+ android:layout_height="38dp"
+ android:src="@drawable/ic_refresh"
+ android:scaleType="centerCrop" />
<EditText android:id="@+id/url"
android:layout_width="0dp"
android:layout_height="wrap_content"

Powered by Google App Engine
This is Rietveld 408576698