Index: chrome/installer/util/product.h |
diff --git a/chrome/installer/util/product.h b/chrome/installer/util/product.h |
index 0f1a019aecac6ce4f4da8a42ce86e343108af8f1..2f23988bda08e5f1b2731c3bf6904ef58765ee78 100644 |
--- a/chrome/installer/util/product.h |
+++ b/chrome/installer/util/product.h |
@@ -57,6 +57,14 @@ class Product { |
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(); |
} |