summaryrefslogtreecommitdiff
path: root/src/components/include/application_manager/policies/policy_handler_interface.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/include/application_manager/policies/policy_handler_interface.h')
-rw-r--r--src/components/include/application_manager/policies/policy_handler_interface.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/components/include/application_manager/policies/policy_handler_interface.h b/src/components/include/application_manager/policies/policy_handler_interface.h
index 735f44a314..1c039d6a88 100644
--- a/src/components/include/application_manager/policies/policy_handler_interface.h
+++ b/src/components/include/application_manager/policies/policy_handler_interface.h
@@ -375,8 +375,13 @@ class PolicyHandlerInterface : public VehicleDataItemProvider {
* @param url The URL provided by the HMI to be used for performing PTU
* retries. If empty, the existing cached URL will be cleared and Core will
* choose which URLs to use on retry
+ * @param snapshot_path The PT snapshot path provided by the HMI. If empty,
+ * the existing cached snapshot path will be cleared.
*/
- virtual void CacheRetryInfo(const uint32_t app_id, const std::string url) = 0;
+ virtual void CacheRetryInfo(
+ const uint32_t app_id = 0,
+ const std::string url = std::string(),
+ const std::string snapshot_path = std::string()) = 0;
#endif // EXTERNAL_PROPRIETARY_MODE
/**