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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/bookmarks/BookmarkDrawerListItemView.java

Issue 2837643002: [Bookmarks] Remove side drawer and introduce root folder view (Closed)
Patch Set: Move is_permanent_node_ check to bookmark_bridge.cc Created 3 years, 8 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/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);
- }
-}

Powered by Google App Engine
This is Rietveld 408576698