| 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 #import "ios/chrome/browser/ui/content_suggestions/content_suggestions_section_i
nformation.h" |
| 6 |
| 7 #include "base/logging.h" |
| 8 |
| 9 #if !defined(__has_feature) || !__has_feature(objc_arc) |
| 10 #error "This file requires ARC support." |
| 11 #endif |
| 12 |
| 13 @implementation ContentSuggestionsSectionInformation |
| 14 |
| 15 @synthesize emptyCell = _emptyCell; |
| 16 @synthesize layout = _layout; |
| 17 @synthesize ID = _ID; |
| 18 @synthesize title = _title; |
| 19 |
| 20 - (instancetype)initWithID:(ContentSuggestionsSectionID)ID |
| 21 emptyCell:(CollectionViewItem*)emptyCell |
| 22 layout:(ContentSuggestionsSectionLayout)layout |
| 23 title:(NSString*)title { |
| 24 self = [super init]; |
| 25 if (self) { |
| 26 DCHECK(ID < ContentSuggestionsSectionCount); |
| 27 _ID = ID; |
| 28 _layout = layout; |
| 29 _emptyCell = emptyCell; |
| 30 _title = [title copy]; |
| 31 } |
| 32 return self; |
| 33 } |
| 34 |
| 35 @end |
| OLD | NEW |