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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/ntp/NewTabPageToolbar.java

Issue 2655263003: [NTP] Remove the ScrollView version of the NTP. (Closed)
Patch Set: Cleaned up some more. Created 3 years, 11 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/java/src/org/chromium/chrome/browser/ntp/NewTabPageToolbar.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/ntp/NewTabPageToolbar.java b/chrome/android/java/src/org/chromium/chrome/browser/ntp/NewTabPageToolbar.java
deleted file mode 100644
index be10f768369c06ca19c250cc90ed330a81285671..0000000000000000000000000000000000000000
--- a/chrome/android/java/src/org/chromium/chrome/browser/ntp/NewTabPageToolbar.java
+++ /dev/null
@@ -1,63 +0,0 @@
-// Copyright 2015 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.
-
-package org.chromium.chrome.browser.ntp;
-
-import android.content.Context;
-import android.util.AttributeSet;
-import android.view.View;
-import android.view.ViewGroup;
-import android.widget.LinearLayout;
-import android.widget.TextView;
-
-import org.chromium.base.ApiCompatibilityUtils;
-import org.chromium.chrome.R;
-import org.chromium.chrome.browser.widget.TintedDrawable;
-
-/**
- * The toolbar at the bottom of the new tab page. Contains buttons to open the bookmarks and
- * recent tabs pages.
- */
-public class NewTabPageToolbar extends LinearLayout {
-
- private ViewGroup mBookmarksButton, mRecentTabsButton;
-
- /**
- * Constructor for inflating from xml.
- */
- public NewTabPageToolbar(Context context, AttributeSet attrs) {
- super(context, attrs);
- }
-
- public View getBookmarksButton() {
- return mBookmarksButton;
- }
-
- public View getRecentTabsButton() {
- return mRecentTabsButton;
- }
-
- @Override
- protected void onFinishInflate() {
- super.onFinishInflate();
- mBookmarksButton = initButton(R.id.bookmarks_button, R.drawable.btn_star);
- mRecentTabsButton = initButton(R.id.recent_tabs_button, R.drawable.btn_recents);
- ((TextView) mBookmarksButton.getChildAt(0)).setText(R.string.ntp_bookmarks);
- ((TextView) mBookmarksButton.getChildAt(0)).setContentDescription(getResources().getString(
- R.string.accessibility_ntp_toolbar_btn_bookmarks));
-
- setBackgroundColor(ApiCompatibilityUtils.getColor(getResources(), R.color.ntp_bg));
- }
-
- private ViewGroup initButton(int buttonId, int drawableId) {
- ViewGroup button = (ViewGroup) findViewById(buttonId);
- TextView textView = (TextView) button.getChildAt(0);
-
- TintedDrawable icon = TintedDrawable.constructTintedDrawable(getResources(), drawableId);
- ApiCompatibilityUtils.setCompoundDrawablesRelativeWithIntrinsicBounds(
- textView, icon, null, null, null);
-
- return button;
- }
-}

Powered by Google App Engine
This is Rietveld 408576698