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

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

Issue 2245013003: Remove "list item" from Android NTP class names. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: x Created 4 years, 4 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/cards/ProgressListItem.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/ntp/cards/ProgressListItem.java b/chrome/android/java/src/org/chromium/chrome/browser/ntp/cards/ProgressListItem.java
deleted file mode 100644
index 268f0cefe8e1036ebeb854194a06c4ce54ccc1ff..0000000000000000000000000000000000000000
--- a/chrome/android/java/src/org/chromium/chrome/browser/ntp/cards/ProgressListItem.java
+++ /dev/null
@@ -1,28 +0,0 @@
-// Copyright 2016 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.cards;
-
-/**
- * Represents a progress indicator for the recycler view. A visibility flag can be set to be used
- * by its associated view holder when it is bound.
- *
- * @see ProgressViewHolder
- */
-class ProgressListItem implements NewTabPageListItem {
- private boolean mVisible = false;
-
- @Override
- public int getType() {
- return NewTabPageListItem.VIEW_TYPE_PROGRESS;
- }
-
- public boolean isVisible() {
- return mVisible;
- }
-
- public void setVisible(boolean visible) {
- mVisible = visible;
- }
-}

Powered by Google App Engine
This is Rietveld 408576698