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

Side by Side Diff: ios/chrome/browser/ui/content_suggestions/cells/content_suggestions_favicon_internal_cell.mm

Issue 2761753002: Cleanup ContentSuggestions cells (Closed)
Patch Set: Fix tests Created 3 years, 9 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 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_favicon_i nternal_cell.h" 5 #import "ios/chrome/browser/ui/content_suggestions/cells/content_suggestions_fav icon_internal_cell.h"
6 6
7 #import "ios/chrome/browser/ui/uikit_ui_util.h" 7 #import "ios/chrome/browser/ui/uikit_ui_util.h"
8 #import "ios/third_party/material_components_ios/src/components/Typography/src/M aterialTypography.h" 8 #import "ios/third_party/material_components_ios/src/components/Typography/src/M aterialTypography.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 kFaviconImageSize = 50; 15 const CGFloat kFaviconImageSize = 50;
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 [super prepareForReuse]; 61 [super prepareForReuse];
62 self.faviconView.image = nil; 62 self.faviconView.image = nil;
63 self.titleLabel.text = nil; 63 self.titleLabel.text = nil;
64 } 64 }
65 65
66 + (NSString*)reuseIdentifier { 66 + (NSString*)reuseIdentifier {
67 return @"faviconInternalCell"; 67 return @"faviconInternalCell";
68 } 68 }
69 69
70 @end 70 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698