Commit a26ee33a authored by Sorin Jianu's avatar Sorin Jianu Committed by Chromium LUCI CQ

UpdateClient changes for installer API.

Change-Id: I7a62bd6ff4a0758f6d0553463021280313499385
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2588288
Commit-Queue: Sorin Jianu <sorin@chromium.org>
Reviewed-by: default avatarJoshua Pawlicki <waffles@chromium.org>
Cr-Commit-Position: refs/heads/master@{#845007}
parent 1185042a
...@@ -176,6 +176,13 @@ class CrxInstaller : public base::RefCountedThreadSafe<CrxInstaller> { ...@@ -176,6 +176,13 @@ class CrxInstaller : public base::RefCountedThreadSafe<CrxInstaller> {
: error(static_cast<int>(error)), extended_error(extended_error) {} : error(static_cast<int>(error)), extended_error(extended_error) {}
int error = 0; // 0 indicates that install has been successful. int error = 0; // 0 indicates that install has been successful.
int extended_error = 0; int extended_error = 0;
// Localized text displayed to the user, if applicable.
std::string installer_text;
// Shell command run at the end of the install, if applicable. This string
// must be escaped to be a command line.
std::string installer_cmd_line;
}; };
struct InstallParams { struct InstallParams {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment