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

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

Issue 811283002: [Installer] Cleaning up dead code for App Launcher / App Host installs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removing ChannelInfo behavioral changes; removing inappropriate NULL check. Created 5 years, 11 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/eula_util.cc
diff --git a/chrome/installer/util/eula_util.cc b/chrome/installer/util/eula_util.cc
index 12e0bf27b34892f8628ed6be7dbeeacb0326372b..14dc1f48f9c660a06e9fd2e2ad5b62d3bf91aca0 100644
--- a/chrome/installer/util/eula_util.cc
+++ b/chrome/installer/util/eula_util.cc
@@ -41,8 +41,7 @@ scoped_ptr<MasterPreferences> GetMasterPrefs(const ProductState& prod_state) {
// Returns true if any of these product are installed, otherwise false.
bool GetAnyChromeProductState(bool system_level, ProductState* state) {
return state->Initialize(system_level, BrowserDistribution::CHROME_BROWSER)
- || state->Initialize(system_level, BrowserDistribution::CHROME_FRAME)
- || state->Initialize(system_level, BrowserDistribution::CHROME_APP_HOST);
+ || state->Initialize(system_level, BrowserDistribution::CHROME_FRAME);
}
} // namespace

Powered by Google App Engine
This is Rietveld 408576698