Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4329)

Unified Diff: chrome/installer/util/installer_state.h

Issue 10957016: Ensuring Google Update at user-level is installed alongside App Host, for the quick-enable App Host… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixing nits. Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/installer/util/installer_state.h
diff --git a/chrome/installer/util/installer_state.h b/chrome/installer/util/installer_state.h
index 6e18ebd80b19bc698eef0dbe0d599fd1a4bef934..e6636dbfcbbee7d8db9b83d8d38c8ada52c5e17e 100644
--- a/chrome/installer/util/installer_state.h
+++ b/chrome/installer/util/installer_state.h
@@ -111,6 +111,12 @@ class InstallerState {
// TODO(grt): Eradicate the bool in favor of the enum.
bool is_multi_install() const;
+ // A convenient method returning the presence of the
+ // --ensure-google-update-present switch.
+ bool ensure_google_update_present() const {
+ return ensure_google_update_present_;
+ }
+
// The full path to the place where the operand resides.
const FilePath& target_path() const { return target_path_; }
@@ -233,6 +239,7 @@ class InstallerState {
#endif
bool msi_;
bool verbose_logging_;
+ bool ensure_google_update_present_;
private:
DISALLOW_COPY_AND_ASSIGN(InstallerState);

Powered by Google App Engine
This is Rietveld 408576698