@@ -53,8 +53,8 @@ class ICDManagementServer : public chip::app::ICDStateObserver
5353public:
5454 ICDManagementServer () = default ;
5555
56- void Init (chip:: PersistentStorageDelegate & storage, chip:: Crypto::SymmetricKeystore * symmetricKeystore,
57- chip:: ICDConfigurationData & ICDConfigurationData);
56+ void Init (PersistentStorageDelegate & storage, Crypto::SymmetricKeystore * symmetricKeystore,
57+ ICDConfigurationData & ICDConfigurationData);
5858
5959 static ICDManagementServer & GetInstance () { return instance; };
6060#if CHIP_CONFIG_ENABLE_ICD_CIP
@@ -65,14 +65,13 @@ class ICDManagementServer : public chip::app::ICDStateObserver
6565 * ICDConfigurationData If function fails, icdCounter will be unchanged
6666 * @return Status
6767 */
68- chip::Protocols::InteractionModel::Status
69- RegisterClient (chip::app::CommandHandler * commandObj, const chip::app::ConcreteCommandPath & commandPath,
70- const chip::app::Clusters::IcdManagement::Commands::RegisterClient::DecodableType & commandData,
71- uint32_t & icdCounter);
72-
73- chip::Protocols::InteractionModel::Status
74- UnregisterClient (chip::app::CommandHandler * commandObj, const chip::app::ConcreteCommandPath & commandPath,
75- const chip::app::Clusters::IcdManagement::Commands::UnregisterClient::DecodableType & commandData);
68+ Protocols::InteractionModel::Status RegisterClient (CommandHandler * commandObj, const ConcreteCommandPath & commandPath,
69+ const IcdManagement::Commands::RegisterClient::DecodableType & commandData,
70+ uint32_t & icdCounter);
71+
72+ Protocols::InteractionModel::Status
73+ UnregisterClient (CommandHandler * commandObj, const ConcreteCommandPath & commandPath,
74+ const IcdManagement::Commands::UnregisterClient::DecodableType & commandData);
7675#endif // CHIP_CONFIG_ENABLE_ICD_CIP
7776
7877private:
@@ -85,11 +84,11 @@ class ICDManagementServer : public chip::app::ICDStateObserver
8584 void TriggerICDMTableUpdatedEvent ();
8685#endif // CHIP_CONFIG_ENABLE_ICD_CIP
8786
88- chip:: ICDConfigurationData * mICDConfigurationData ;
87+ ICDConfigurationData * mICDConfigurationData ;
8988
9089#if CHIP_CONFIG_ENABLE_ICD_CIP
91- chip:: PersistentStorageDelegate * mStorage ;
92- chip:: Crypto::SymmetricKeystore * mSymmetricKeystore ;
90+ PersistentStorageDelegate * mStorage ;
91+ Crypto::SymmetricKeystore * mSymmetricKeystore ;
9392#endif // CHIP_CONFIG_ENABLE_ICD_CIP
9493
9594 void OnEnterActiveMode () override {};
0 commit comments