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

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

Issue 110163004: Remove Chrome Frame ready-mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: compile fixes for mini_installer_test Created 7 years 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/installation_validator.h
diff --git a/chrome/installer/util/installation_validator.h b/chrome/installer/util/installation_validator.h
index 463230cbde643161233cca32d8fe487c6cb4d27a..2ef5b381c288c81ceb04dd5858d5cabe0ea8833b 100644
--- a/chrome/installer/util/installation_validator.h
+++ b/chrome/installer/util/installation_validator.h
@@ -39,8 +39,7 @@ class InstallationValidator {
CHROME_MULTI = 0x02,
CHROME_FRAME_SINGLE = 0x04,
CHROME_FRAME_MULTI = 0x08,
- CHROME_FRAME_READY_MODE = 0x10,
- CHROME_APP_HOST = 0x20,
+ CHROME_APP_HOST = 0x10,
};
}; // class ProductBits
@@ -61,8 +60,6 @@ class InstallationValidator {
ProductBits::CHROME_FRAME_MULTI,
CHROME_FRAME_MULTI_CHROME_MULTI =
ProductBits::CHROME_FRAME_MULTI | ProductBits::CHROME_MULTI,
- CHROME_FRAME_READY_MODE_CHROME_MULTI =
- ProductBits::CHROME_FRAME_READY_MODE | ProductBits::CHROME_MULTI,
CHROME_APP_HOST =
ProductBits::CHROME_APP_HOST,
CHROME_APP_HOST_CHROME_FRAME_SINGLE =
@@ -77,9 +74,6 @@ class InstallationValidator {
ProductBits::CHROME_MULTI,
CHROME_APP_HOST_CHROME_MULTI =
ProductBits::CHROME_APP_HOST | ProductBits::CHROME_MULTI,
- CHROME_APP_HOST_CHROME_MULTI_CHROME_FRAME_READY_MODE =
- ProductBits::CHROME_APP_HOST | ProductBits::CHROME_MULTI |
- ProductBits::CHROME_FRAME_READY_MODE,
};
// Validates |machine_state| at user or system level, returning true if valid.

Powered by Google App Engine
This is Rietveld 408576698