Index: chrome/android/java/src/org/chromium/chrome/browser/bookmarks/BookmarkDrawerListItemView.java |
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/bookmarks/BookmarkDrawerListItemView.java b/chrome/android/java/src/org/chromium/chrome/browser/bookmarks/BookmarkDrawerListItemView.java |
deleted file mode 100644 |
index 19a8b41ca99171517f393972b22416e2e7796699..0000000000000000000000000000000000000000 |
--- a/chrome/android/java/src/org/chromium/chrome/browser/bookmarks/BookmarkDrawerListItemView.java |
+++ /dev/null |
@@ -1,35 +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.bookmarks; |
- |
-import android.annotation.SuppressLint; |
-import android.content.Context; |
-import android.graphics.drawable.Drawable; |
-import android.support.v7.widget.AppCompatTextView; |
-import android.util.AttributeSet; |
- |
-import org.chromium.base.ApiCompatibilityUtils; |
-import org.chromium.chrome.R; |
-import org.chromium.chrome.browser.widget.TintedDrawable; |
- |
-@SuppressLint("Instantiatable") |
-class BookmarkDrawerListItemView extends AppCompatTextView { |
- public BookmarkDrawerListItemView(Context context, AttributeSet attrs) { |
- super(context, attrs); |
- } |
- |
- void setIcon(int iconDrawableId) { |
- if (iconDrawableId == 0) { |
- setCompoundDrawablePadding(0); |
- } else { |
- setCompoundDrawablePadding(getResources().getDimensionPixelSize( |
- R.dimen.bookmark_drawer_drawable_padding)); |
- } |
- |
- Drawable drawable = TintedDrawable.constructTintedDrawable(getResources(), iconDrawableId); |
- ApiCompatibilityUtils.setCompoundDrawablesRelativeWithIntrinsicBounds( |
- this, drawable, null, null, null); |
- } |
-} |