Skip to content

Commit da9ed39

Browse files
authored
RDKEMW-7499: onAppInstallationStatus Event missing failReason (#508)
* change Pcernt -> Progress, change uint32_t -> string for quotaKb & usedKb * cleanup * cleanup * revert struct Progress * rename Progress to ProgressInfo * fix typo
1 parent b1e394c commit da9ed39

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

apis/PackageManager/IAppPackageManager.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -124,22 +124,22 @@ namespace Exchange {
124124
// @param fileLocator: FileLocator
125125
virtual Core::hresult Delete(const string &fileLocator) = 0;
126126

127-
struct Percent {
128-
uint8_t percent;
127+
struct ProgressInfo {
128+
uint8_t progress;
129129
};
130130

131-
// @brief Delete
131+
// @brief Progress
132132
// @text progress
133133
// @param downloadId: Download id
134134
virtual Core::hresult Progress(
135135
const string &downloadId,
136-
Percent &percent /* @out */) = 0;
136+
ProgressInfo &progress /* @out */) = 0;
137137

138138
// @brief GetStorageDetails
139139
// @text getStorageDetails
140140
virtual Core::hresult GetStorageDetails(
141-
uint32_t &quotaKb /* @out */,
142-
uint32_t &usedKb /* @out */) = 0;
141+
string &quotaKb /* @out */,
142+
string &usedKb /* @out */) = 0;
143143

144144
// @brief RateLimit
145145
// @text rateLimit

0 commit comments

Comments
 (0)