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

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

Issue 14031025: Implementing unified Chrome / App Launcher flow, and migrating old stand-alone App Launcher. (Closed) Base URL: http://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 8 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 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);

Powered by Google App Engine
This is Rietveld 408576698