| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 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 | 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 #import "ios/chrome/browser/ui/content_suggestions/identifier/content_suggestion
s_section_information.h" | 5 #import "ios/chrome/browser/ui/content_suggestions/identifier/content_suggestion
s_section_information.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 | 8 |
| 9 #if !defined(__has_feature) || !__has_feature(objc_arc) | 9 #if !defined(__has_feature) || !__has_feature(objc_arc) |
| 10 #error "This file requires ARC support." | 10 #error "This file requires ARC support." |
| 11 #endif | 11 #endif |
| 12 | 12 |
| 13 @implementation ContentSuggestionsSectionInformation | 13 @implementation ContentSuggestionsSectionInformation |
| 14 | 14 |
| 15 @synthesize layout = _layout; | 15 @synthesize layout = _layout; |
| 16 @synthesize sectionID = _sectionID; | 16 @synthesize sectionID = _sectionID; |
| 17 @synthesize title = _title; | 17 @synthesize title = _title; |
| 18 @synthesize footerTitle = _footerTitle; | 18 @synthesize footerTitle = _footerTitle; |
| 19 @synthesize emptyText = _emptyText; |
| 20 @synthesize showIfEmpty = _showIfEmpty; |
| 19 | 21 |
| 20 - (instancetype)initWithSectionID:(ContentSuggestionsSectionID)sectionID { | 22 - (instancetype)initWithSectionID:(ContentSuggestionsSectionID)sectionID { |
| 21 self = [super init]; | 23 self = [super init]; |
| 22 if (self) { | 24 if (self) { |
| 23 DCHECK(sectionID < ContentSuggestionsSectionUnknown); | 25 DCHECK(sectionID < ContentSuggestionsSectionUnknown); |
| 24 _sectionID = sectionID; | 26 _sectionID = sectionID; |
| 25 } | 27 } |
| 26 return self; | 28 return self; |
| 27 } | 29 } |
| 28 | 30 |
| 29 @end | 31 @end |
| OLD | NEW |