| 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_suggestions_stack_ite
m.h" | 5 #import "ios/chrome/browser/ui/content_suggestions/cells/content_suggestions_sta
ck_item.h" |
| 6 | 6 |
| 7 #import "ios/chrome/browser/ui/content_suggestions/content_suggestions_stack_ite
m_actions.h" | 7 #import "ios/chrome/browser/ui/content_suggestions/cells/content_suggestions_sta
ck_item_actions.h" |
| 8 #import "ios/chrome/browser/ui/uikit_ui_util.h" | 8 #import "ios/chrome/browser/ui/uikit_ui_util.h" |
| 9 | 9 |
| 10 #if !defined(__has_feature) || !__has_feature(objc_arc) | 10 #if !defined(__has_feature) || !__has_feature(objc_arc) |
| 11 #error "This file requires ARC support." | 11 #error "This file requires ARC support." |
| 12 #endif | 12 #endif |
| 13 | 13 |
| 14 namespace { | 14 namespace { |
| 15 const CGFloat kStackSpacing = 8; | 15 const CGFloat kStackSpacing = 8; |
| 16 } | 16 } |
| 17 | 17 |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 @"oneSpace" : @(kStackSpacing * 1), | 134 @"oneSpace" : @(kStackSpacing * 1), |
| 135 @"twoSpace" : @(kStackSpacing * 2), | 135 @"twoSpace" : @(kStackSpacing * 2), |
| 136 @"threeSpace" : @(kStackSpacing * 3), | 136 @"threeSpace" : @(kStackSpacing * 3), |
| 137 @"fourSpace" : @(kStackSpacing * 4) | 137 @"fourSpace" : @(kStackSpacing * 4) |
| 138 }); | 138 }); |
| 139 } | 139 } |
| 140 return self; | 140 return self; |
| 141 } | 141 } |
| 142 | 142 |
| 143 @end | 143 @end |
| OLD | NEW |