| Index: chrome/installer/util/installation_state.cc
|
| ===================================================================
|
| --- chrome/installer/util/installation_state.cc (revision 71434)
|
| +++ chrome/installer/util/installation_state.cc (working copy)
|
| @@ -108,14 +108,6 @@
|
| return product_state.version_.get() == NULL ? NULL : &product_state;
|
| }
|
|
|
| -// Included for testing.
|
| -void InstallationState::SetMultiPackageState(bool system_install,
|
| - const ProductState& package_state) {
|
| - ProductState& target =
|
| - (system_install ? system_products_ : user_products_)[MULTI_PACKAGE_INDEX];
|
| - target.CopyFrom(package_state);
|
| -}
|
| -
|
| const ProductState* InstallationState::GetProductState(
|
| bool system_install,
|
| BrowserDistribution::Type type) const {
|
| @@ -124,12 +116,4 @@
|
| return product_state.version_.get() == NULL ? NULL : &product_state;
|
| }
|
|
|
| -// Included for testing.
|
| -void InstallationState::SetProductState(bool system_install,
|
| - BrowserDistribution::Type type, const ProductState& product_state) {
|
| - ProductState& target = (system_install ? system_products_ :
|
| - user_products_)[IndexFromDistType(type)];
|
| - target.CopyFrom(product_state);
|
| -}
|
| -
|
| } // namespace installer
|
|
|