| Index: chrome_frame/chrome_tab.cc
|
| ===================================================================
|
| --- chrome_frame/chrome_tab.cc (revision 114790)
|
| +++ chrome_frame/chrome_tab.cc (working copy)
|
| @@ -258,9 +258,8 @@
|
| GoogleUpdateSettings::GetChromeChannelAndModifiers(true, &channel_name)) {
|
| std::transform(channel_name.begin(), channel_name.end(),
|
| channel_name.begin(), tolower);
|
| - // Use this only for the dev channel and CEEE channels.
|
| - if (channel_name.find(L"dev") != std::wstring::npos ||
|
| - channel_name.find(L"ceee") != std::wstring::npos) {
|
| + // Use this only for the dev channel.
|
| + if (channel_name.find(L"dev") != std::wstring::npos) {
|
| HKEY hive = HKEY_CURRENT_USER;
|
| if (IsSystemProcess()) {
|
| // For system installs, our updates will be running as SYSTEM which
|
|
|