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

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

Issue 10790144: Revert 148046 - Revert 147650 - Implement installation of the Chrome App Host. (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1215/src/
Patch Set: Created 8 years, 5 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
« no previous file with comments | « chrome/installer/util/prebuild/create_string_rc.py ('k') | chrome/installer/util/product.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/util/product.h
===================================================================
--- chrome/installer/util/product.h (revision 148103)
+++ chrome/installer/util/product.h (working copy)
@@ -56,6 +56,14 @@
return distribution_->GetType() == BrowserDistribution::CHROME_FRAME;
}
+ bool is_chrome_app_host() const {
+ return distribution_->GetType() == BrowserDistribution::CHROME_APP_HOST;
+ }
+
+ bool is_chrome_binaries() const {
+ return distribution_->GetType() == BrowserDistribution::CHROME_BINARIES;
+ }
+
bool HasOption(const std::wstring& option) const {
return options_.find(option) != options_.end();
}
« no previous file with comments | « chrome/installer/util/prebuild/create_string_rc.py ('k') | chrome/installer/util/product.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698