File tree 2 files changed +9
-9
lines changed
src/darwin/Framework/CHIP
2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -975,9 +975,9 @@ - (void)controllerShuttingDown:(MTRDeviceController_Concrete *)controller
975
975
return [_controllers copy ];
976
976
}
977
977
978
- - (nullable MTRDeviceController *)runningControllerForFabricIndex : (FabricIndex)fabricIndex
979
- includeControllerStartingUp : (BOOL )includeControllerStartingUp
980
- includeControllerShuttingDown : (BOOL )includeControllerShuttingDown
978
+ - (nullable MTRDeviceController_Concrete *)runningControllerForFabricIndex : (FabricIndex)fabricIndex
979
+ includeControllerStartingUp : (BOOL )includeControllerStartingUp
980
+ includeControllerShuttingDown : (BOOL )includeControllerShuttingDown
981
981
{
982
982
assertChipStackLockedByCurrentThread ();
983
983
@@ -1006,7 +1006,7 @@ - (nullable MTRDeviceController *)runningControllerForFabricIndex:(FabricIndex)f
1006
1006
return nil ;
1007
1007
}
1008
1008
1009
- - (nullable MTRDeviceController *)runningControllerForFabricIndex : (chip::FabricIndex)fabricIndex
1009
+ - (nullable MTRDeviceController_Concrete *)runningControllerForFabricIndex : (chip::FabricIndex)fabricIndex
1010
1010
{
1011
1011
return [self runningControllerForFabricIndex: fabricIndex includeControllerStartingUp: YES includeControllerShuttingDown: YES ];
1012
1012
}
Original file line number Diff line number Diff line change @@ -57,21 +57,21 @@ MTR_DIRECT_MEMBERS
57
57
* Get the list of running controllers. This will include controllers that are
58
58
* in the middle of starting up or shutting down.
59
59
*/
60
- - (NSArray <MTRDeviceController *> *)getRunningControllers ;
60
+ - (NSArray <MTRDeviceController_Concrete *> *)getRunningControllers ;
61
61
62
62
/* *
63
63
* Find a running controller, if any, for the given fabric index.
64
64
*/
65
- - (nullable MTRDeviceController *)runningControllerForFabricIndex : (chip::FabricIndex)fabricIndex ;
65
+ - (nullable MTRDeviceController_Concrete *)runningControllerForFabricIndex : (chip::FabricIndex)fabricIndex ;
66
66
67
67
/* *
68
68
* Find a running controller, if any, for the given fabric index. Allows
69
69
* controlling whether to include a controller that is in the middle of startup
70
70
* or shutdown.
71
71
*/
72
- - (nullable MTRDeviceController *)runningControllerForFabricIndex : (chip::FabricIndex)fabricIndex
73
- includeControllerStartingUp : (BOOL )includeControllerStartingUp
74
- includeControllerShuttingDown : (BOOL )includeControllerShuttingDown ;
72
+ - (nullable MTRDeviceController_Concrete *)runningControllerForFabricIndex : (chip::FabricIndex)fabricIndex
73
+ includeControllerStartingUp : (BOOL )includeControllerStartingUp
74
+ includeControllerShuttingDown : (BOOL )includeControllerShuttingDown ;
75
75
76
76
/* *
77
77
* Notify the controller factory that a new operational instance with the given
You can’t perform that action at this time.
0 commit comments