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

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

Issue 1688033002: Rename EnhancedBookmarks to Bookmarks, part 1. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments from #2 Created 4 years, 10 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/BookmarkItemHighlightView.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/enhancedbookmarks/EnhancedBookmarkItemHighlightView.java b/chrome/android/java/src/org/chromium/chrome/browser/bookmarks/BookmarkItemHighlightView.java
similarity index 89%
rename from chrome/android/java/src/org/chromium/chrome/browser/enhancedbookmarks/EnhancedBookmarkItemHighlightView.java
rename to chrome/android/java/src/org/chromium/chrome/browser/bookmarks/BookmarkItemHighlightView.java
index 60bf6e2db732189f5452eac0ea3448ab21bbf270..325aef838e7dc8104e506274c22490947cae2830 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/enhancedbookmarks/EnhancedBookmarkItemHighlightView.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/bookmarks/BookmarkItemHighlightView.java
@@ -2,7 +2,7 @@
// 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.enhancedbookmarks;
+package org.chromium.chrome.browser.bookmarks;
import android.content.Context;
import android.graphics.drawable.Drawable;
@@ -17,7 +17,7 @@ import org.chromium.chrome.R;
/**
* Highlight overlay view for items on the main grid.
*/
-public class EnhancedBookmarkItemHighlightView extends View implements Checkable {
+public class BookmarkItemHighlightView extends View implements Checkable {
public static final int ANIMATION_DURATION_MS = 150;
private static final int[] CHECKED_STATE_SET = {android.R.attr.state_checked};
private boolean mIsChecked;
@@ -25,7 +25,7 @@ public class EnhancedBookmarkItemHighlightView extends View implements Checkable
/**
* Constructor for inflating from XML.
*/
- public EnhancedBookmarkItemHighlightView(Context context, AttributeSet attrs) {
+ public BookmarkItemHighlightView(Context context, AttributeSet attrs) {
super(context, attrs);
Drawable clickDrawable = context.obtainStyledAttributes(new int[] {
android.R.attr.selectableItemBackground }).getDrawable(0);

Powered by Google App Engine
This is Rietveld 408576698