File tree 2 files changed +0
-18
lines changed
examples/chef/common/clusters
2 files changed +0
-18
lines changed Original file line number Diff line number Diff line change @@ -32,15 +32,6 @@ class AudioOutputManager : public chip::app::Clusters::AudioOutput::Delegate
32
32
CHIP_ERROR HandleGetOutputList (chip::app::AttributeValueEncoder & aEncoder) override ;
33
33
bool HandleRenameOutput (const uint8_t & index, const chip::CharSpan & name) override ;
34
34
bool HandleSelectOutput (const uint8_t & index) override ;
35
- CHIP_ERROR GetOutputName (uint8_t index, chip::CharSpan & name)
36
- {
37
- if (index < mOutputs .size ())
38
- {
39
- name = chip::CharSpan::fromCharString (mOutputName [index ]);
40
- return CHIP_NO_ERROR;
41
- }
42
- return CHIP_ERROR_INVALID_ARGUMENT;
43
- }
44
35
45
36
protected:
46
37
uint8_t mCurrentOutput = 1 ;
Original file line number Diff line number Diff line change @@ -35,15 +35,6 @@ class MediaInputManager : public chip::app::Clusters::MediaInput::Delegate
35
35
bool HandleShowInputStatus () override ;
36
36
bool HandleHideInputStatus () override ;
37
37
bool HandleRenameInput (const uint8_t index, const chip::CharSpan & name) override ;
38
- CHIP_ERROR GetInputName (uint8_t index, chip::CharSpan & name)
39
- {
40
- if (index < mInputs .size ())
41
- {
42
- name = chip::CharSpan::fromCharString (mInputName [index ]);
43
- return CHIP_NO_ERROR;
44
- }
45
- return CHIP_ERROR_INVALID_ARGUMENT;
46
- }
47
38
48
39
protected:
49
40
uint8_t mCurrentInput ;
You can’t perform that action at this time.
0 commit comments