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

Unified Diff: chrome/installer/util/chrome_app_host_operations.cc

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: Removing Start Menu root stuff; cleanups. Created 7 years, 7 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/chrome_app_host_operations.cc
diff --git a/chrome/installer/util/chrome_app_host_operations.cc b/chrome/installer/util/chrome_app_host_operations.cc
index 361f952ef10e612e6fbc4a2e4a58bf251e60ece5..9479aa2236c444955bed818dad319f9d9232d867 100644
--- a/chrome/installer/util/chrome_app_host_operations.cc
+++ b/chrome/installer/util/chrome_app_host_operations.cc
@@ -83,7 +83,8 @@ bool ChromeAppHostOperations::SetChannelFlags(const std::set<string16>& options,
ChannelInfo* channel_info) const {
#if defined(GOOGLE_CHROME_BUILD)
DCHECK(channel_info);
- return channel_info->SetAppLauncher(set);
+ // Force App Launcher to be absent from "ap" values.
+ return channel_info->SetAppLauncher(false);
#else
return false;
#endif
@@ -91,7 +92,7 @@ bool ChromeAppHostOperations::SetChannelFlags(const std::set<string16>& options,
bool ChromeAppHostOperations::ShouldCreateUninstallEntry(
const std::set<string16>& options) const {
- return true;
+ return false;
}
void ChromeAppHostOperations::AddDefaultShortcutProperties(

Powered by Google App Engine
This is Rietveld 408576698