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

Unified Diff: ios/chrome/browser/ui/collection_view/collection_view_controller.h

Issue 2761263003: Allow CollectionViewModel/Controller queries without SectionIdentifier (Closed)
Patch Set: Add reconfigure to the VC Created 3 years, 9 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: ios/chrome/browser/ui/collection_view/collection_view_controller.h
diff --git a/ios/chrome/browser/ui/collection_view/collection_view_controller.h b/ios/chrome/browser/ui/collection_view/collection_view_controller.h
index d777ca81c5955605b7fd079b64478a69f98ecc29..0a1ba9734937c00c72d5b667e8dfcf78ff124d3a 100644
--- a/ios/chrome/browser/ui/collection_view/collection_view_controller.h
+++ b/ios/chrome/browser/ui/collection_view/collection_view_controller.h
@@ -47,6 +47,10 @@ typedef NS_ENUM(NSInteger, CollectionViewControllerStyle) {
- (void)reconfigureCellsForItems:(NSArray*)items
inSectionWithIdentifier:(NSInteger)sectionIdentifier;
+// Reconfigures the cells corresponding to the given |items| by calling
+// |configureCell:| on each cell.
+- (void)reconfigureCellsForItems:(NSArray*)items;
+
// Reconfigures the cells corresponding to the given |indexPaths| by calling
// |configureCell:| on each cell.
- (void)reconfigureCellsAtIndexPaths:(NSArray*)indexPaths;

Powered by Google App Engine
This is Rietveld 408576698