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

Side by Side Diff: ios/chrome/browser/ui/settings/cells/autofill_data_item.h

Issue 2814793003: Adds accessoryType property to CollectionViewItem (Closed)
Patch Set: Created 3 years, 8 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 #ifndef IOS_CHROME_BROWSER_UI_SETTINGS_CELLS_AUTOFILL_DATA_ITEM_H_ 5 #ifndef IOS_CHROME_BROWSER_UI_SETTINGS_CELLS_AUTOFILL_DATA_ITEM_H_
6 #define IOS_CHROME_BROWSER_UI_SETTINGS_CELLS_AUTOFILL_DATA_ITEM_H_ 6 #define IOS_CHROME_BROWSER_UI_SETTINGS_CELLS_AUTOFILL_DATA_ITEM_H_
7 7
8 #import <UIKit/UIKit.h> 8 #import <UIKit/UIKit.h>
9 9
10 #include <string> 10 #include <string>
11 11
12 #import "ios/chrome/browser/ui/collection_view/cells/collection_view_item.h" 12 #import "ios/chrome/browser/ui/collection_view/cells/collection_view_item.h"
13 #import "ios/third_party/material_components_ios/src/components/CollectionCells/ src/MaterialCollectionCells.h" 13 #import "ios/third_party/material_components_ios/src/components/CollectionCells/ src/MaterialCollectionCells.h"
14 14
15 // Item for autofill profile (address) or credit card. 15 // Item for autofill profile (address) or credit card.
16 @interface AutofillDataItem : CollectionViewItem 16 @interface AutofillDataItem : CollectionViewItem
17 17
18 // Only deletable items will enter edit mode. 18 // Only deletable items will enter edit mode.
19 @property(nonatomic, assign, getter=isDeletable) BOOL deletable; 19 @property(nonatomic, assign, getter=isDeletable) BOOL deletable;
20 20
21 // The GUID used by the PersonalDataManager to identify data elements (e.g. 21 // The GUID used by the PersonalDataManager to identify data elements (e.g.
22 // profiles and credit cards). 22 // profiles and credit cards).
23 @property(nonatomic, assign) std::string GUID; 23 @property(nonatomic, assign) std::string GUID;
24 24
25 @property(nonatomic, copy) NSString* text; 25 @property(nonatomic, copy) NSString* text;
26 @property(nonatomic, copy) NSString* leadingDetailText; 26 @property(nonatomic, copy) NSString* leadingDetailText;
27 @property(nonatomic, copy) NSString* trailingDetailText; 27 @property(nonatomic, copy) NSString* trailingDetailText;
28 28
29 // The accessory type for the represented cell.
30 @property(nonatomic) MDCCollectionViewCellAccessoryType accessoryType;
31
32 @end 29 @end
33 30
34 // Cell for autofill data with two leading text labels and one trailing text 31 // Cell for autofill data with two leading text labels and one trailing text
35 // label. 32 // label.
36 @interface AutofillDataCell : MDCCollectionViewCell 33 @interface AutofillDataCell : MDCCollectionViewCell
37 34
38 @property(nonatomic, readonly, strong) UILabel* textLabel; 35 @property(nonatomic, readonly, strong) UILabel* textLabel;
39 @property(nonatomic, readonly, strong) UILabel* leadingDetailTextLabel; 36 @property(nonatomic, readonly, strong) UILabel* leadingDetailTextLabel;
40 @property(nonatomic, readonly, strong) UILabel* trailingDetailTextLabel; 37 @property(nonatomic, readonly, strong) UILabel* trailingDetailTextLabel;
41 38
42 @end 39 @end
43 40
44 #endif // IOS_CHROME_BROWSER_UI_SETTINGS_CELLS_AUTOFILL_DATA_ITEM_H_ 41 #endif // IOS_CHROME_BROWSER_UI_SETTINGS_CELLS_AUTOFILL_DATA_ITEM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698