Chromium Code Reviews| 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/content_suggestion.h" | 5 #import "ios/chrome/browser/ui/content_suggestions/content_suggestion.h" |
| 6 | 6 |
| 7 #if !defined(__has_feature) || !__has_feature(objc_arc) | 7 #if !defined(__has_feature) || !__has_feature(objc_arc) |
| 8 #error "This file requires ARC support." | 8 #error "This file requires ARC support." |
| 9 #endif | 9 #endif |
| 10 | 10 |
| 11 @interface ContentSuggestion () | |
| 12 | |
| 13 @end | |
| 14 | |
| 11 @implementation ContentSuggestion | 15 @implementation ContentSuggestion |
| 12 | 16 |
| 13 @synthesize title = _title; | 17 @synthesize title = _title; |
| 14 @synthesize image = _image; | 18 @synthesize image = _image; |
| 19 @synthesize text = _text; | |
| 20 @synthesize url = _url; | |
| 21 | |
|
stkhapugin
2017/02/15 15:35:43
remove newline
gambard
2017/02/16 10:06:30
Done.
| |
| 22 @synthesize section = _section; | |
| 23 @synthesize type = _type; | |
| 15 | 24 |
| 16 @end | 25 @end |
| OLD | NEW |