diff options
Diffstat (limited to 'chrome/installer/setup/install_worker.h')
-rw-r--r-- | chrome/installer/setup/install_worker.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/chrome/installer/setup/install_worker.h b/chrome/installer/setup/install_worker.h index 7e4e19f..82a4901 100644 --- a/chrome/installer/setup/install_worker.h +++ b/chrome/installer/setup/install_worker.h @@ -28,8 +28,18 @@ class InstallerState; class Package; class Product; +// Helper function for AddGoogleUpdateWorkItems that mirrors oeminstall. +void AddOemInstallWorkItems(const InstallationState& original_state, + const InstallerState& installer_state, + WorkItemList* install_list); + +// Helper function for AddGoogleUpdateWorkItems that mirrors eulaaccepted. +void AddEulaAcceptedWorkItems(const InstallationState& original_state, + const InstallerState& installer_state, + WorkItemList* install_list); + // Adds work items that make registry adjustments for Google Update; namely, -// copy a brand value and move a usagestats value. +// copy brand, oeminstall, and eulaaccepted values; and move a usagestats value. void AddGoogleUpdateWorkItems(const InstallationState& original_state, const InstallerState& installer_state, WorkItemList* install_list); |