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

Unified Diff: ios/chrome/browser/ui/content_suggestions/content_suggestion.h

Issue 2877513003: ContentSuggestionsDataSource returns CollectionViewItem (Closed)
Patch Set: Address comments Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: ios/chrome/browser/ui/content_suggestions/content_suggestion.h
diff --git a/ios/chrome/browser/ui/content_suggestions/content_suggestion.h b/ios/chrome/browser/ui/content_suggestions/content_suggestion.h
deleted file mode 100644
index 0e4e7b5eab2fda5e2ab46a85104a1d5fc2487c63..0000000000000000000000000000000000000000
--- a/ios/chrome/browser/ui/content_suggestions/content_suggestion.h
+++ /dev/null
@@ -1,50 +0,0 @@
-// Copyright 2017 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CONTENT_SUGGESTION_H_
-#define IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CONTENT_SUGGESTION_H_
-
-#import <UIKit/UIKit.h>
-
-#import "ios/chrome/browser/ui/content_suggestions/identifier/content_suggestion_identifier.h"
-
-namespace base {
-class Time;
-}
-
-class GURL;
-
-// Enum defining the type of a ContentSuggestions.
-typedef NS_ENUM(NSInteger, ContentSuggestionType) {
- // Use this type to pass information about an empty section. Suggestion of
- // this type are empty and should not be displayed. The informations to be
- // displayed are contained in the SectionInfo.
- ContentSuggestionTypeEmpty,
- ContentSuggestionTypeArticle,
- ContentSuggestionTypeReadingList,
- ContentSuggestionTypeMostVisited,
-};
-
-// Data for a suggestions item, compatible with Objective-C. Mostly acts as a
-// wrapper for ntp_snippets::ContentSuggestion.
-@interface ContentSuggestion : NSObject<ContentSuggestionIdentification>
-
-// Title of the suggestion.
-@property(nonatomic, copy, nullable) NSString* title;
-// Text for the suggestion.
-@property(nonatomic, copy, nullable) NSString* text;
-// URL associated with the suggestion.
-@property(nonatomic, assign) GURL url;
-// The name of the publisher.
-@property(nonatomic, copy, nullable) NSString* publisher;
-// The date of publication.
-@property(nonatomic, assign) base::Time publishDate;
-// Whether the suggestion is available offline.
-@property(nonatomic, assign) BOOL availableOffline;
-
-@property(nonatomic, assign) ContentSuggestionType type;
-
-@end
-
-#endif // IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CONTENT_SUGGESTION_H_

Powered by Google App Engine
This is Rietveld 408576698