| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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/showcase/core/showcase_model.h" | 5 #import "ios/showcase/core/showcase_model.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 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 showcase::kClassForDisplayKey : @"SettingsViewController", | 35 showcase::kClassForDisplayKey : @"SettingsViewController", |
| 36 showcase::kClassForInstantiationKey : @"SCSettingsCoordinator", | 36 showcase::kClassForInstantiationKey : @"SCSettingsCoordinator", |
| 37 showcase::kUseCaseKey : @"Main settings screen", | 37 showcase::kUseCaseKey : @"Main settings screen", |
| 38 }, | 38 }, |
| 39 @{ | 39 @{ |
| 40 showcase::kClassForDisplayKey : @"TabGridViewController", | 40 showcase::kClassForDisplayKey : @"TabGridViewController", |
| 41 showcase::kClassForInstantiationKey : @"SCTabGridCoordinator", | 41 showcase::kClassForInstantiationKey : @"SCTabGridCoordinator", |
| 42 showcase::kUseCaseKey : @"Tab grid", | 42 showcase::kUseCaseKey : @"Tab grid", |
| 43 }, | 43 }, |
| 44 @{ | 44 @{ |
| 45 showcase::kClassForDisplayKey : @"TabStripContainerViewController", | |
| 46 showcase::kClassForInstantiationKey : @"SCTabStripCoordinator", | |
| 47 showcase::kUseCaseKey : @"Tab strip container", | |
| 48 }, | |
| 49 @{ | |
| 50 showcase::kClassForDisplayKey : @"TopToolbarTabViewController", | 45 showcase::kClassForDisplayKey : @"TopToolbarTabViewController", |
| 51 showcase::kClassForInstantiationKey : @"SCTopToolbarTabCoordinator", | 46 showcase::kClassForInstantiationKey : @"SCTopToolbarTabCoordinator", |
| 52 showcase::kUseCaseKey : @"Top toolbar tab", | 47 showcase::kUseCaseKey : @"Top toolbar tab", |
| 53 }, | 48 }, |
| 54 @{ | 49 @{ |
| 55 showcase::kClassForDisplayKey : @"BottomToolbarTabViewController", | 50 showcase::kClassForDisplayKey : @"BottomToolbarTabViewController", |
| 56 showcase::kClassForInstantiationKey : @"SCBottomToolbarTabCoordinator", | 51 showcase::kClassForInstantiationKey : @"SCBottomToolbarTabCoordinator", |
| 57 showcase::kUseCaseKey : @"Bottom toolbar tab", | 52 showcase::kUseCaseKey : @"Bottom toolbar tab", |
| 58 }, | 53 }, |
| 59 @{ | 54 @{ |
| 60 showcase::kClassForDisplayKey : @"ToolbarViewController", | 55 showcase::kClassForDisplayKey : @"ToolbarViewController", |
| 61 showcase::kClassForInstantiationKey : @"SCToolbarCoordinator", | 56 showcase::kClassForInstantiationKey : @"SCToolbarCoordinator", |
| 62 showcase::kUseCaseKey : @"Toolbar", | 57 showcase::kUseCaseKey : @"Toolbar", |
| 63 }, | 58 }, |
| 64 @{ | 59 @{ |
| 65 showcase::kClassForDisplayKey : @"UITableViewCell", | 60 showcase::kClassForDisplayKey : @"UITableViewCell", |
| 66 showcase::kClassForInstantiationKey : @"UIKitTableViewCellViewController", | 61 showcase::kClassForInstantiationKey : @"UIKitTableViewCellViewController", |
| 67 showcase::kUseCaseKey : @"UIKit Table Cells", | 62 showcase::kUseCaseKey : @"UIKit Table Cells", |
| 68 }, | 63 }, |
| 69 ]; | 64 ]; |
| 70 } | 65 } |
| 71 | 66 |
| 72 @end | 67 @end |
| OLD | NEW |