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

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

Issue 8909009: Remove remaining references to CEEE. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Sync'ed, no new changes Created 9 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
« no previous file with comments | « chrome/installer/util/channel_info.h ('k') | chrome/installer/util/channel_info_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/util/channel_info.cc
===================================================================
--- chrome/installer/util/channel_info.cc (revision 115109)
+++ chrome/installer/util/channel_info.cc (working copy)
@@ -14,7 +14,6 @@
const wchar_t kChannelBeta[] = L"beta";
const wchar_t kChannelDev[] = L"dev";
-const wchar_t kModCeee[] = L"-CEEE";
const wchar_t kModChrome[] = L"-chrome";
const wchar_t kModChromeFrame[] = L"-chromeframe";
const wchar_t kModMultiInstall[] = L"-multi";
@@ -33,7 +32,6 @@
kModMultiInstall,
kModChrome,
kModChromeFrame,
- kModCeee,
kModReadyMode,
kSfxMultiFail,
kSfxFull
@@ -44,7 +42,6 @@
MOD_MULTI_INSTALL,
MOD_CHROME,
MOD_CHROME_FRAME,
- MOD_CEEE,
MOD_READY_MODE,
SFX_MULTI_FAIL,
SFX_FULL,
@@ -181,14 +178,6 @@
return false;
}
-bool ChannelInfo::IsCeee() const {
- return HasModifier(MOD_CEEE, value_);
-}
-
-bool ChannelInfo::SetCeee(bool value) {
- return SetModifier(MOD_CEEE, value, &value_);
-}
-
bool ChannelInfo::IsChrome() const {
return HasModifier(MOD_CHROME, value_);
}
« no previous file with comments | « chrome/installer/util/channel_info.h ('k') | chrome/installer/util/channel_info_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698