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

Side by Side Diff: chrome/android/java/src/org/chromium/chrome/browser/ntp/cards/ProgressItem.java

Issue 2860463002: [Suggestions] Remove TreeNode.getSuggestionAt() in favor of a visitor. (Closed)
Patch Set: review Created 3 years, 7 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 package org.chromium.chrome.browser.ntp.cards; 5 package org.chromium.chrome.browser.ntp.cards;
6 6
7 /** 7 /**
8 * Represents a progress indicator for the recycler view. A visibility flag can be set to be used 8 * Represents a progress indicator for the recycler view. A visibility flag can be set to be used
9 * by its associated view holder when it is bound. 9 * by its associated view holder when it is bound.
10 * 10 *
11 * @see ProgressViewHolder 11 * @see ProgressViewHolder
12 */ 12 */
13 class ProgressItem extends OptionalLeaf { 13 class ProgressItem extends OptionalLeaf {
14 14
15 @Override 15 @Override
16 @ItemViewType 16 @ItemViewType
17 protected int getItemViewType() { 17 protected int getItemViewType() {
18 return ItemViewType.PROGRESS; 18 return ItemViewType.PROGRESS;
19 } 19 }
20 20
21 @Override 21 @Override
22 protected void onBindViewHolder(NewTabPageViewHolder holder) { 22 protected void onBindViewHolder(NewTabPageViewHolder holder) {
23 assert holder instanceof ProgressViewHolder; 23 assert holder instanceof ProgressViewHolder;
24 ((ProgressViewHolder) holder).onBindViewHolder(this); 24 ((ProgressViewHolder) holder).onBindViewHolder(this);
25 } 25 }
26
27 @Override
28 protected void visitOptionalItem(NodeVisitor visitor) {
29 visitor.visitProgressItem();
30 }
26 } 31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698