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

Unified Diff: chrome/android/shell/res/layout/chrome_shell_activity.xml

Issue 1314413004: Cast ChromeShell into the fiery pit of Mount Doom. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 5 years, 3 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: chrome/android/shell/res/layout/chrome_shell_activity.xml
diff --git a/chrome/android/shell/res/layout/chrome_shell_activity.xml b/chrome/android/shell/res/layout/chrome_shell_activity.xml
deleted file mode 100644
index 9a928d7c20778e395fa72ad7cf530655bb142ba5..0000000000000000000000000000000000000000
--- a/chrome/android/shell/res/layout/chrome_shell_activity.xml
+++ /dev/null
@@ -1,77 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-
-<!-- Copyright 2014 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.
- -->
-
-<org.chromium.chrome.shell.TabManager android:id="@+id/tab_manager"
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:chrome="http://schemas.android.com/apk/res-auto"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
- <org.chromium.chrome.shell.ChromeShellToolbar android:id="@+id/toolbar"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
- <org.chromium.chrome.browser.widget.TintedImageButton
- android:id="@+id/add_button"
- android:layout_width="38dp"
- android:layout_height="38dp"
- android:src="@android:drawable/ic_menu_add"
- android:visibility="gone"
- android:scaleType="center"/>
- <org.chromium.chrome.browser.widget.TintedImageButton
- android:id="@+id/stop_reload_button"
- android:layout_width="38dp"
- android:layout_height="38dp"
- android:src="@drawable/btn_close"
- android:background="?attr/selectableItemBackground"
- android:scaleType="center"/>
- <EditText android:id="@+id/url"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:gravity="bottom"
- android:textSize="18sp"
- android:singleLine="true"
- android:selectAllOnFocus="true"
- android:hint="@string/url_hint"
- android:inputType="textUri"
- android:imeOptions="actionGo|flagNoExtractUi" />
- <org.chromium.chrome.browser.widget.TintedImageButton
- android:id="@+id/tab_switcher"
- android:layout_width="38dp"
- android:layout_height="38dp"
- android:src="@drawable/btn_tabswitcher"
- android:background="?attr/selectableItemBackground"
- android:scaleType="center"
- android:contentDescription="@null"/>
- <org.chromium.chrome.browser.widget.TintedImageButton
- android:id="@+id/menu_button"
- android:layout_width="38dp"
- android:layout_height="38dp"
- android:src="@drawable/btn_menu"
- android:background="?attr/selectableItemBackground"
- android:scaleType="center"/>
- </LinearLayout>
- <org.chromium.chrome.browser.widget.ToolbarProgressBar
- android:id="@+id/progress"
- android:layout_width="match_parent"
- android:layout_height="2dp"
- chrome:progressBarColor="@color/material_deep_teal_500"
- chrome:backgroundColor="@android:color/transparent" />
- </org.chromium.chrome.shell.ChromeShellToolbar>
- <FrameLayout android:id="@+id/content_container"
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="1">
- </FrameLayout>
-
-</org.chromium.chrome.shell.TabManager>
« no previous file with comments | « chrome/android/shell/res/drawable/suggestion_arrow.png ('k') | chrome/android/shell/res/layout/suggestion_item.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698