diff options
author | Raquel Medina <raquel.medina@konsulko.com> | 2019-12-09 18:32:02 +0100 |
---|---|---|
committer | Raquel Medina <raquel.medina@konsulko.com> | 2019-12-12 02:18:37 +0100 |
commit | 0ff12f7c22e2be3238b0c436c08634cd18f5bd06 (patch) | |
tree | 6699d634a1952a62ee4315a71aa60c7405bd48a4 /voice/voiceagentregistry.h | |
parent | c4e293365c1a16135d49af3bf6de173547326f79 (diff) |
voice: remove vshl-capabilities dependencies
Various fixes for voice component:
- fix incorrect check on vap (voice agent profile) pointers;
- remove dependencies on vshl-capabilities: this module will
communicate via vshl-core api;
- remove dependencis on alexa-voiceagent;
- use a more generic name for cbl related operations. CBL
in this environment is understood as code based
login (for voice agent authorization via user login to a cloud
service), however, in the case of alexa it is known as code
based linking;
- add check for voice_xxx_event eventdata which in ocasions
is an empty object, i.e., the payload is missing.
Bug-AGL: SPEC-2981
Signed-off-by: Raquel Medina <raquel.medina@konsulko.com>
Change-Id: Icaab7a21bedb3e2696d541567162ec46b047a305
Diffstat (limited to 'voice/voiceagentregistry.h')
-rw-r--r-- | voice/voiceagentregistry.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/voice/voiceagentregistry.h b/voice/voiceagentregistry.h index 2a69294..4394017 100644 --- a/voice/voiceagentregistry.h +++ b/voice/voiceagentregistry.h @@ -63,12 +63,12 @@ class VoiceAgentRegistry : public QObject void setAuthState(QString id, ServiceAuthState state); void setConnectionState(QString id, AgentConnectionState state); void setDialogState(QString id, VoiceDialogState state); - void updateCblPair(QString id, QString code, QString url, - bool expired); + void updateLoginData(QString id, QString code, QString url, + bool expired); int stringToEnum(QString value, QString enumtype); private: VoiceAgentModel *m_model; - Voice *m_voice; + Voice *vc; QString m_default_aid; QStringList m_regids; }; |