Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef IOS_CHROME_BROWSER_PAYMENTS_CELLS_PAYMENTS_HAS_ACCESSORY_TYPE_H_ | |
| 6 #define IOS_CHROME_BROWSER_PAYMENTS_CELLS_PAYMENTS_HAS_ACCESSORY_TYPE_H_ | |
| 7 | |
| 8 #import "ios/third_party/material_components_ios/src/components/CollectionCells/ src/MaterialCollectionCells.h" | |
| 9 | |
| 10 // Protocol adopted by the payments collection view items that set the accessory | |
| 11 // view type on their represented cells. | |
| 12 @protocol PaymentsHasAccessoryType | |
|
Justin Donnelly
2017/04/17 15:21:58
Does this name conform to some existing pattern? L
Moe
2017/04/17 15:45:30
I'm not following any convention in naming nor my
| |
| 13 | |
| 14 // The accessory view type for the represented cell. | |
| 15 @property(nonatomic) MDCCollectionViewCellAccessoryType accessoryType; | |
| 16 | |
| 17 @end | |
| 18 | |
| 19 #endif // IOS_CHROME_BROWSER_PAYMENTS_CELLS_PAYMENTS_HAS_ACCESSORY_TYPE_H_ | |
| OLD | NEW |