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

Unified Diff: blimp/client/app/android/java/res/layout/blimp_main.xml

Issue 1962393004: Added a debug info UI for Blimp (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added statistics object to BlimpEngineSession Created 4 years, 7 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: blimp/client/app/android/java/res/layout/blimp_main.xml
diff --git a/blimp/client/app/android/java/res/layout/blimp_main.xml b/blimp/client/app/android/java/res/layout/blimp_main.xml
index fca99bcb70118ede090177392b28da6fd3c8859b..054d4ee66fbc289256cd9523c2e794912f7828a9 100644
--- a/blimp/client/app/android/java/res/layout/blimp_main.xml
+++ b/blimp/client/app/android/java/res/layout/blimp_main.xml
@@ -61,17 +61,25 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/toolbar"/>
+
+ <include android:id="@+id/debug_stats"
+ layout="@layout/debug_stats_overlay"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_alignParentBottom="true"
+ android:visibility="invisible" />
+
<org.chromium.blimp.input.WebInputBox
- android:id="@+id/editText"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@drawable/web_input_background"
- android:layout_alignParentBottom="true"
- android:layout_marginTop="45dp"
- android:padding="10dp"
- android:paddingTop="16dp"
- android:inputType="text|textWebEditText"
- android:visibility="gone"/>
+ android:id="@+id/editText"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:background="@drawable/web_input_background"
+ android:layout_alignParentBottom="true"
+ android:layout_marginTop="45dp"
+ android:padding="10dp"
+ android:paddingTop="16dp"
+ android:inputType="text|textWebEditText"
+ android:visibility="gone"/>
</RelativeLayout>
</merge>

Powered by Google App Engine
This is Rietveld 408576698