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

Unified Diff: ios/showcase/core/showcase_model.mm

Issue 2764063002: Add TabContainer to Showcase (Closed)
Patch Set: Other heuristic for back button 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ios/showcase/BUILD.gn ('k') | ios/showcase/suggestions/sc_suggestions_egtest.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/showcase/core/showcase_model.mm
diff --git a/ios/showcase/core/showcase_model.mm b/ios/showcase/core/showcase_model.mm
index 7aafb0c0fc571666956e9e5a197bbd57086400c3..daec8c34fdf5ddf5c6d82f2fe0e4d0fdfba9f865 100644
--- a/ios/showcase/core/showcase_model.mm
+++ b/ios/showcase/core/showcase_model.mm
@@ -17,11 +17,6 @@
+ (NSArray<showcase::ModelRow*>*)model {
return @[
@{
- showcase::kClassForDisplayKey : @"SettingsViewController",
- showcase::kClassForInstantiationKey : @"SCSettingsCoordinator",
- showcase::kUseCaseKey : @"Main settings screen",
- },
- @{
showcase::kClassForDisplayKey : @"ContentSuggestionsViewController",
showcase::kClassForInstantiationKey : @"SCSuggestionsCoordinator",
showcase::kUseCaseKey : @"New Suggestions UI",
@@ -32,9 +27,9 @@
showcase::kUseCaseKey : @"Tools menu",
},
@{
- showcase::kClassForDisplayKey : @"UITableViewCell",
- showcase::kClassForInstantiationKey : @"UIKitTableViewCellViewController",
- showcase::kUseCaseKey : @"UIKit Table Cells",
+ showcase::kClassForDisplayKey : @"SettingsViewController",
+ showcase::kClassForInstantiationKey : @"SCSettingsCoordinator",
+ showcase::kUseCaseKey : @"Main settings screen",
},
@{
showcase::kClassForDisplayKey : @"TabGridViewController",
@@ -47,10 +42,25 @@
showcase::kUseCaseKey : @"Tab strip container",
},
@{
+ showcase::kClassForDisplayKey : @"TopToolbarTabViewController",
+ showcase::kClassForInstantiationKey : @"SCTopToolbarTabCoordinator",
+ showcase::kUseCaseKey : @"Top toolbar tab",
+ },
+ @{
+ showcase::kClassForDisplayKey : @"BottomToolbarTabViewController",
+ showcase::kClassForInstantiationKey : @"SCBottomToolbarTabCoordinator",
+ showcase::kUseCaseKey : @"Bottom toolbar tab",
+ },
+ @{
showcase::kClassForDisplayKey : @"ToolbarViewController",
showcase::kClassForInstantiationKey : @"SCToolbarCoordinator",
showcase::kUseCaseKey : @"Toolbar",
},
+ @{
+ showcase::kClassForDisplayKey : @"UITableViewCell",
+ showcase::kClassForInstantiationKey : @"UIKitTableViewCellViewController",
+ showcase::kUseCaseKey : @"UIKit Table Cells",
+ },
];
}
« no previous file with comments | « ios/showcase/BUILD.gn ('k') | ios/showcase/suggestions/sc_suggestions_egtest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698