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( |