Cleanup custom_screen layout

Removes ErrorConsloe
Removes FixedTitleBarContainer

Change-Id: Ib5b3fb74d33851fddf983e3ac4b205b2457a9381
diff --git a/res/layout/custom_screen.xml b/res/layout/custom_screen.xml
index d166d80..df5c0f7 100644
--- a/res/layout/custom_screen.xml
+++ b/res/layout/custom_screen.xml
@@ -16,31 +16,14 @@
 
 <merge
     xmlns:android="http://schemas.android.com/apk/res/android">
+    <FrameLayout android:id="@+id/main_content"
+        android:layout_width="match_parent"
+        android:layout_height="match_parent"
+    />
     <FrameLayout android:id="@+id/fullscreen_custom_content"
         android:visibility="gone"
         android:layout_width="match_parent"
         android:layout_height="match_parent"
     />
-    <com.android.browser.view.CustomScreenLinearLayout
-        android:orientation="vertical"
-        android:id="@+id/vertical_layout"
-        android:layout_width="match_parent"
-        android:layout_height="match_parent">
-
-        <LinearLayout android:id="@+id/error_console"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-        />
-
-        <FrameLayout android:id="@+id/fixed_titlebar_container"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-        />
-
-        <FrameLayout android:id="@+id/main_content"
-            android:layout_width="match_parent"
-            android:layout_height="match_parent"
-        />
-    </com.android.browser.view.CustomScreenLinearLayout>
 </merge>