Index: chrome/installer/util/installation_state.h |
=================================================================== |
--- chrome/installer/util/installation_state.h (revision 76372) |
+++ chrome/installer/util/installation_state.h (working copy) |
@@ -14,6 +14,7 @@ |
#include "base/scoped_ptr.h" |
#include "chrome/installer/util/browser_distribution.h" |
#include "chrome/installer/util/channel_info.h" |
+#include "chrome/installer/util/product_commands.h" |
class Version; |
@@ -64,6 +65,9 @@ |
// True if |uninstall_command| contains --multi-install. |
bool is_multi_install() const { return multi_install_; } |
+ // Returns the set of Google Update commands. |
+ const ProductCommands& commands() const { return commands_; } |
+ |
// Returns this object a la operator=(). |
ProductState& CopyFrom(const ProductState& other); |
@@ -73,6 +77,7 @@ |
scoped_ptr<Version> old_version_; |
std::wstring rename_cmd_; |
CommandLine uninstall_command_; |
+ ProductCommands commands_; |
bool msi_; |
bool multi_install_; |