Index: chrome/installer/util/installer_state.h |
diff --git a/chrome/installer/util/installer_state.h b/chrome/installer/util/installer_state.h |
index 46f5b5d84992f56d210a0fdbc2650c22dc6a3466..a807b05280c36d3db5119e2f2051cfaf16ab2107 100644 |
--- a/chrome/installer/util/installer_state.h |
+++ b/chrome/installer/util/installer_state.h |
@@ -117,6 +117,12 @@ class InstallerState { |
return ensure_google_update_present_; |
} |
+ // A convenient method returning the need to create shortcuts for, |
gab
2013/04/29 20:25:41
for(...?),
huangs
2013/04/30 14:01:49
Oops. Done.
|
+ // as specified by the --app-launcher switch. |
+ bool create_app_launcher_shortcuts() const { |
+ return create_app_launcher_shortcuts_; |
+ } |
+ |
// The full path to the place where the operand resides. |
const base::FilePath& target_path() const { return target_path_; } |
@@ -253,6 +259,8 @@ class InstallerState { |
bool msi_; |
bool verbose_logging_; |
bool ensure_google_update_present_; |
+ // TODO(huangs): Remove by M29. |
+ bool create_app_launcher_shortcuts_; |
private: |
DISALLOW_COPY_AND_ASSIGN(InstallerState); |