Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/installer/util/channel_info.h" | 5 #include "chrome/installer/util/channel_info.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/win/registry.h" | 8 #include "base/win/registry.h" |
| 9 #include "chrome/installer/util/app_launcher_installer_util.h" | |
| 9 #include "chrome/installer/util/google_update_constants.h" | 10 #include "chrome/installer/util/google_update_constants.h" |
| 11 #include "chrome/installer/util/install_util.h" | |
| 10 #include "chrome/installer/util/util_constants.h" | 12 #include "chrome/installer/util/util_constants.h" |
| 11 | 13 |
| 12 using base::win::RegKey; | 14 using base::win::RegKey; |
| 13 | 15 |
| 14 namespace { | 16 namespace { |
| 15 | 17 |
| 16 const wchar_t kModChrome[] = L"-chrome"; | 18 const wchar_t kModChrome[] = L"-chrome"; |
| 17 const wchar_t kModChromeFrame[] = L"-chromeframe"; | 19 const wchar_t kModChromeFrame[] = L"-chromeframe"; |
| 18 // TODO(huangs): Remove by M27. | |
| 19 const wchar_t kModAppHostDeprecated[] = L"-apphost"; | |
| 20 const wchar_t kModAppLauncher[] = L"-applauncher"; | |
| 21 const wchar_t kModMultiInstall[] = L"-multi"; | 20 const wchar_t kModMultiInstall[] = L"-multi"; |
| 22 const wchar_t kModReadyMode[] = L"-readymode"; | 21 const wchar_t kModReadyMode[] = L"-readymode"; |
| 23 const wchar_t kModStage[] = L"-stage:"; | 22 const wchar_t kModStage[] = L"-stage:"; |
| 24 const wchar_t kSfxFull[] = L"-full"; | 23 const wchar_t kSfxFull[] = L"-full"; |
| 25 const wchar_t kSfxMigrating[] = L"-migrating"; | 24 const wchar_t kSfxMigrating[] = L"-migrating"; |
| 26 const wchar_t kSfxMultiFail[] = L"-multifail"; | 25 const wchar_t kSfxMultiFail[] = L"-multifail"; |
| 27 | 26 |
| 28 const wchar_t* const kChannels[] = { | 27 const wchar_t* const kChannels[] = { |
| 29 installer::kChromeChannelBeta, | 28 installer::kChromeChannelBeta, |
| 30 installer::kChromeChannelDev, | 29 installer::kChromeChannelDev, |
| 31 installer::kChromeChannelStableExplicit | 30 installer::kChromeChannelStableExplicit |
| 32 }; | 31 }; |
| 33 | 32 |
| 34 const wchar_t* const kModifiers[] = { | 33 const wchar_t* const kModifiers[] = { |
| 35 kModStage, | 34 kModStage, |
| 36 kModMultiInstall, | 35 kModMultiInstall, |
| 37 kModChrome, | 36 kModChrome, |
| 38 kModChromeFrame, | 37 kModChromeFrame, |
| 39 kModAppHostDeprecated, // TODO(huangs): Remove by M27. | |
| 40 kModAppLauncher, | |
| 41 kModReadyMode, | 38 kModReadyMode, |
| 42 kSfxMultiFail, | 39 kSfxMultiFail, |
| 43 kSfxMigrating, | 40 kSfxMigrating, |
| 44 kSfxFull, | 41 kSfxFull, |
| 45 }; | 42 }; |
| 46 | 43 |
| 47 enum ModifierIndex { | 44 enum ModifierIndex { |
| 48 MOD_STAGE, | 45 MOD_STAGE, |
| 49 MOD_MULTI_INSTALL, | 46 MOD_MULTI_INSTALL, |
| 50 MOD_CHROME, | 47 MOD_CHROME, |
| 51 MOD_CHROME_FRAME, | 48 MOD_CHROME_FRAME, |
| 52 MOD_APP_HOST_DEPRECATED, // TODO(huangs): Remove by M27. | |
| 53 MOD_APP_LAUNCHER, | |
| 54 MOD_READY_MODE, | 49 MOD_READY_MODE, |
| 55 SFX_MULTI_FAIL, | 50 SFX_MULTI_FAIL, |
| 56 SFX_MIGRATING, | 51 SFX_MIGRATING, |
| 57 SFX_FULL, | 52 SFX_FULL, |
| 58 NUM_MODIFIERS | 53 NUM_MODIFIERS |
| 59 }; | 54 }; |
| 60 | 55 |
| 61 COMPILE_ASSERT(NUM_MODIFIERS == arraysize(kModifiers), | 56 COMPILE_ASSERT(NUM_MODIFIERS == arraysize(kModifiers), |
| 62 kModifiers_disagrees_with_ModifierIndex_comma_they_must_match_bang); | 57 kModifiers_disagrees_with_ModifierIndex_comma_they_must_match_bang); |
| 63 | 58 |
| 64 // Returns true if the modifier is found, in which case |position| holds the | 59 // Returns true if the modifier is found, in which case |position| holds the |
| 65 // location at which the modifier was found. The number of characters in the | 60 // location at which the modifier was found. The number of characters in the |
| 66 // modifier is returned in |length|, if non-NULL. | 61 // modifier is returned in |length|, if non-NULL. |
| 67 bool FindModifier(ModifierIndex index, | 62 bool FindModifier(ModifierIndex index, |
| 68 const std::wstring& ap_value, | 63 const base::string16& ap_value, |
| 69 std::wstring::size_type* position, | 64 base::string16::size_type* position, |
| 70 std::wstring::size_type* length) { | 65 base::string16::size_type* length) { |
| 71 DCHECK(position != NULL); | 66 DCHECK(position != NULL); |
| 72 std::wstring::size_type mod_position = std::wstring::npos; | 67 base::string16::size_type mod_position = base::string16::npos; |
| 73 std::wstring::size_type mod_length = | 68 base::string16::size_type mod_length = |
| 74 std::wstring::traits_type::length(kModifiers[index]); | 69 base::string16::traits_type::length(kModifiers[index]); |
| 75 const bool mod_takes_arg = (kModifiers[index][mod_length - 1] == L':'); | 70 const bool mod_takes_arg = (kModifiers[index][mod_length - 1] == L':'); |
| 76 std::wstring::size_type pos = 0; | 71 base::string16::size_type pos = 0; |
| 77 do { | 72 do { |
| 78 mod_position = ap_value.find(kModifiers[index], pos, mod_length); | 73 mod_position = ap_value.find(kModifiers[index], pos, mod_length); |
| 79 if (mod_position == std::wstring::npos) | 74 if (mod_position == base::string16::npos) |
| 80 return false; // Modifier not found. | 75 return false; // Modifier not found. |
| 81 pos = mod_position + mod_length; | 76 pos = mod_position + mod_length; |
| 82 // Modifiers that take an argument gobble up to the next separator or to the | 77 // Modifiers that take an argument gobble up to the next separator or to the |
| 83 // end. | 78 // end. |
| 84 if (mod_takes_arg) { | 79 if (mod_takes_arg) { |
| 85 pos = ap_value.find(L'-', pos); | 80 pos = ap_value.find(L'-', pos); |
| 86 if (pos == std::wstring::npos) | 81 if (pos == base::string16::npos) |
| 87 pos = ap_value.size(); | 82 pos = ap_value.size(); |
| 88 break; | 83 break; |
| 89 } | 84 } |
| 90 // Regular modifiers must be followed by '-' or the end of the string. | 85 // Regular modifiers must be followed by '-' or the end of the string. |
| 91 } while (pos != ap_value.size() && ap_value[pos] != L'-'); | 86 } while (pos != ap_value.size() && ap_value[pos] != L'-'); |
| 92 DCHECK_NE(mod_position, std::wstring::npos); | 87 DCHECK_NE(mod_position, base::string16::npos); |
| 93 *position = mod_position; | 88 *position = mod_position; |
| 94 if (length != NULL) | 89 if (length != NULL) |
| 95 *length = pos - mod_position; | 90 *length = pos - mod_position; |
| 96 return true; | 91 return true; |
| 97 } | 92 } |
| 98 | 93 |
| 99 bool HasModifier(ModifierIndex index, const std::wstring& ap_value) { | 94 bool HasModifier(ModifierIndex index, const base::string16& ap_value) { |
| 100 DCHECK(index >= 0 && index < NUM_MODIFIERS); | 95 DCHECK(index >= 0 && index < NUM_MODIFIERS); |
| 101 std::wstring::size_type position; | 96 base::string16::size_type position; |
| 102 return FindModifier(index, ap_value, &position, NULL); | 97 return FindModifier(index, ap_value, &position, NULL); |
| 103 } | 98 } |
| 104 | 99 |
| 105 std::wstring::size_type FindInsertionPoint(ModifierIndex index, | 100 base::string16::size_type FindInsertionPoint(ModifierIndex index, |
| 106 const std::wstring& ap_value) { | 101 const base::string16& ap_value) { |
| 107 // Return the location of the next modifier. | 102 // Return the location of the next modifier. |
| 108 std::wstring::size_type result; | 103 base::string16::size_type result; |
| 109 | 104 |
| 110 for (int scan = index + 1; scan < NUM_MODIFIERS; ++scan) { | 105 for (int scan = index + 1; scan < NUM_MODIFIERS; ++scan) { |
| 111 if (FindModifier(static_cast<ModifierIndex>(scan), ap_value, &result, NULL)) | 106 if (FindModifier(static_cast<ModifierIndex>(scan), ap_value, &result, NULL)) |
| 112 return result; | 107 return result; |
| 113 } | 108 } |
| 114 | 109 |
| 115 return ap_value.size(); | 110 return ap_value.size(); |
| 116 } | 111 } |
| 117 | 112 |
| 118 // Returns true if |ap_value| is modified. | 113 // Returns true if |ap_value| is modified. |
| 119 bool SetModifier(ModifierIndex index, bool set, std::wstring* ap_value) { | 114 bool SetModifier(ModifierIndex index, bool set, base::string16* ap_value) { |
| 120 DCHECK(index >= 0 && index < NUM_MODIFIERS); | 115 DCHECK(index >= 0 && index < NUM_MODIFIERS); |
| 121 DCHECK(ap_value); | 116 DCHECK(ap_value); |
| 122 std::wstring::size_type position; | 117 base::string16::size_type position; |
| 123 std::wstring::size_type length; | 118 base::string16::size_type length; |
| 124 bool have_modifier = FindModifier(index, *ap_value, &position, &length); | 119 bool have_modifier = FindModifier(index, *ap_value, &position, &length); |
| 125 if (set) { | 120 if (set) { |
| 126 if (!have_modifier) { | 121 if (!have_modifier) { |
| 127 ap_value->insert(FindInsertionPoint(index, *ap_value), kModifiers[index]); | 122 ap_value->insert(FindInsertionPoint(index, *ap_value), kModifiers[index]); |
| 128 return true; | 123 return true; |
| 129 } | 124 } |
| 130 } else { | 125 } else { |
| 131 if (have_modifier) { | 126 if (have_modifier) { |
| 132 ap_value->erase(position, length); | 127 ap_value->erase(position, length); |
| 133 return true; | 128 return true; |
| 134 } | 129 } |
| 135 } | 130 } |
| 136 return false; | 131 return false; |
| 137 } | 132 } |
| 138 | 133 |
| 139 } // namespace | 134 } // namespace |
| 140 | 135 |
| 141 namespace installer { | 136 namespace installer { |
| 142 | 137 |
| 143 bool ChannelInfo::Initialize(const RegKey& key) { | 138 bool ChannelInfo::Initialize(const RegKey& key) { |
| 144 LONG result = key.ReadValue(google_update::kRegApField, &value_); | 139 base::string16 temp_value; |
| 145 return result == ERROR_SUCCESS || result == ERROR_FILE_NOT_FOUND || | 140 LONG result = key.ReadValue(google_update::kRegApField, &temp_value); |
| 146 result == ERROR_INVALID_HANDLE; | 141 if (result == ERROR_SUCCESS || result == ERROR_FILE_NOT_FOUND || |
| 142 result == ERROR_INVALID_HANDLE) { | |
| 143 set_value(temp_value); | |
| 144 return true; | |
| 145 } | |
| 146 return false; | |
| 147 } | 147 } |
| 148 | 148 |
| 149 bool ChannelInfo::Write(RegKey* key) const { | 149 bool ChannelInfo::Write(RegKey* key) const { |
| 150 DCHECK(key); | 150 DCHECK(key); |
| 151 // Google Update deletes the value when it is empty, so we may as well, too. | 151 // Google Update deletes the value when it is empty, so we may as well, too. |
| 152 LONG result = value_.empty() ? | 152 LONG result = value_.empty() ? |
| 153 key->DeleteValue(google_update::kRegApField) : | 153 key->DeleteValue(google_update::kRegApField) : |
| 154 key->WriteValue(google_update::kRegApField, value_.c_str()); | 154 key->WriteValue(google_update::kRegApField, value_.c_str()); |
| 155 if (result != ERROR_SUCCESS) { | 155 if (result != ERROR_SUCCESS) { |
| 156 LOG(ERROR) << "Failed writing channel info; result: " << result; | 156 LOG(ERROR) << "Failed writing channel info; result: " << result; |
| 157 return false; | 157 return false; |
| 158 } | 158 } |
| 159 return true; | 159 return true; |
| 160 } | 160 } |
| 161 | 161 |
| 162 bool ChannelInfo::GetChannelName(std::wstring* channel_name) const { | 162 // static |
| 163 void ChannelInfo::AuditValue(base::string16* value) { | |
| 164 #if defined(GOOGLE_CHROME_BUILD) | |
| 165 if (!InstallUtil::IsChromeSxSProcess()) { | |
| 166 app_launcher_installer::RemoveDeprecatedModifiers(value); | |
| 167 } | |
| 168 #endif | |
| 169 } | |
| 170 | |
| 171 const base::string16& ChannelInfo::value() const { | |
| 172 return value_; | |
| 173 } | |
| 174 | |
| 175 void ChannelInfo::set_value(const base::string16& value) { | |
| 176 value_ = value; | |
| 177 AuditValue(&value_); | |
|
grt (UTC plus 2)
2015/01/09 18:57:04
i don't like how this buries magic that's specific
huangs
2015/01/18 01:18:24
Done: Restored channal_info.*, but set SetAppLaunc
grt (UTC plus 2)
2015/01/20 21:30:22
I don't think this is the right approach since it
huangs
2015/01/20 23:26:00
Okay, put back the filtering for set_value() and t
grt (UTC plus 2)
2015/01/21 02:18:12
Let's talk in person. I must be doing a bad job of
huangs
2015/01/21 20:33:52
Acknowledged; restoring this per conversation.
| |
| 178 } | |
| 179 | |
| 180 bool ChannelInfo::Equals(const ChannelInfo& other) const { | |
| 181 return value_ == other.value_; | |
| 182 } | |
| 183 | |
| 184 bool ChannelInfo::GetChannelName(base::string16* channel_name) const { | |
| 163 DCHECK(channel_name); | 185 DCHECK(channel_name); |
| 164 if (value_.empty()) { | 186 if (value_.empty()) { |
| 165 channel_name->erase(); | 187 channel_name->erase(); |
| 166 return true; | 188 return true; |
| 167 } else { | 189 } else { |
| 168 for (const wchar_t* const* scan = &kChannels[0], | 190 for (const wchar_t* const* scan = &kChannels[0], |
| 169 *const* end = &kChannels[arraysize(kChannels)]; scan != end; | 191 *const* end = &kChannels[arraysize(kChannels)]; scan != end; |
| 170 ++scan) { | 192 ++scan) { |
| 171 if (value_.find(*scan) != std::wstring::npos) { | 193 if (value_.find(*scan) != base::string16::npos) { |
| 172 // Report channels with "stable" in them as stable (empty string). | 194 // Report channels with "stable" in them as stable (empty string). |
| 173 if (*scan == installer::kChromeChannelStableExplicit) | 195 if (*scan == installer::kChromeChannelStableExplicit) |
| 174 channel_name->erase(); | 196 channel_name->erase(); |
| 175 else | 197 else |
| 176 channel_name->assign(*scan); | 198 channel_name->assign(*scan); |
| 177 return true; | 199 return true; |
| 178 } | 200 } |
| 179 } | 201 } |
| 180 // There may be modifiers present. Strip them off and see if we're left | 202 // There may be modifiers present. Strip them off and see if we're left |
| 181 // with the empty string (stable channel). | 203 // with the empty string (stable channel). |
| 182 std::wstring tmp_value = value_; | 204 base::string16 tmp_value = value_; |
| 183 for (int i = 0; i != NUM_MODIFIERS; ++i) { | 205 for (int i = 0; i != NUM_MODIFIERS; ++i) { |
| 184 SetModifier(static_cast<ModifierIndex>(i), false, &tmp_value); | 206 SetModifier(static_cast<ModifierIndex>(i), false, &tmp_value); |
| 185 } | 207 } |
| 186 if (tmp_value.empty()) { | 208 if (tmp_value.empty()) { |
| 187 channel_name->erase(); | 209 channel_name->erase(); |
| 188 return true; | 210 return true; |
| 189 } | 211 } |
| 190 } | 212 } |
| 191 | 213 |
| 192 return false; | 214 return false; |
| 193 } | 215 } |
| 194 | 216 |
| 195 bool ChannelInfo::IsChrome() const { | 217 bool ChannelInfo::IsChrome() const { |
| 196 return HasModifier(MOD_CHROME, value_); | 218 return HasModifier(MOD_CHROME, value_); |
| 197 } | 219 } |
| 198 | 220 |
| 199 bool ChannelInfo::SetChrome(bool value) { | 221 bool ChannelInfo::SetChrome(bool value) { |
| 200 return SetModifier(MOD_CHROME, value, &value_); | 222 return SetModifier(MOD_CHROME, value, &value_); |
| 201 } | 223 } |
| 202 | 224 |
| 203 bool ChannelInfo::IsChromeFrame() const { | 225 bool ChannelInfo::IsChromeFrame() const { |
| 204 return HasModifier(MOD_CHROME_FRAME, value_); | 226 return HasModifier(MOD_CHROME_FRAME, value_); |
| 205 } | 227 } |
| 206 | 228 |
| 207 bool ChannelInfo::SetChromeFrame(bool value) { | 229 bool ChannelInfo::SetChromeFrame(bool value) { |
| 208 return SetModifier(MOD_CHROME_FRAME, value, &value_); | 230 return SetModifier(MOD_CHROME_FRAME, value, &value_); |
| 209 } | 231 } |
| 210 | 232 |
| 211 bool ChannelInfo::IsAppLauncher() const { | |
| 212 return HasModifier(MOD_APP_LAUNCHER, value_); | |
| 213 } | |
| 214 | |
| 215 bool ChannelInfo::SetAppLauncher(bool value) { | |
| 216 // Unconditionally remove -apphost since it has been deprecated. | |
| 217 bool changed_app_host = SetModifier(MOD_APP_HOST_DEPRECATED, false, &value_); | |
| 218 bool changed_app_launcher = SetModifier(MOD_APP_LAUNCHER, value, &value_); | |
| 219 return changed_app_host || changed_app_launcher; | |
| 220 } | |
| 221 | |
| 222 bool ChannelInfo::IsMultiInstall() const { | 233 bool ChannelInfo::IsMultiInstall() const { |
| 223 return HasModifier(MOD_MULTI_INSTALL, value_); | 234 return HasModifier(MOD_MULTI_INSTALL, value_); |
| 224 } | 235 } |
| 225 | 236 |
| 226 bool ChannelInfo::SetMultiInstall(bool value) { | 237 bool ChannelInfo::SetMultiInstall(bool value) { |
| 227 return SetModifier(MOD_MULTI_INSTALL, value, &value_); | 238 return SetModifier(MOD_MULTI_INSTALL, value, &value_); |
| 228 } | 239 } |
| 229 | 240 |
| 230 bool ChannelInfo::IsReadyMode() const { | 241 bool ChannelInfo::IsReadyMode() const { |
| 231 return HasModifier(MOD_READY_MODE, value_); | 242 return HasModifier(MOD_READY_MODE, value_); |
| 232 } | 243 } |
| 233 | 244 |
| 234 bool ChannelInfo::SetReadyMode(bool value) { | 245 bool ChannelInfo::SetReadyMode(bool value) { |
| 235 return SetModifier(MOD_READY_MODE, value, &value_); | 246 return SetModifier(MOD_READY_MODE, value, &value_); |
| 236 } | 247 } |
| 237 | 248 |
| 238 bool ChannelInfo::SetStage(const wchar_t* stage) { | 249 bool ChannelInfo::SetStage(const wchar_t* stage) { |
| 239 std::wstring::size_type position; | 250 base::string16::size_type position; |
| 240 std::wstring::size_type length; | 251 base::string16::size_type length; |
| 241 bool have_modifier = FindModifier(MOD_STAGE, value_, &position, &length); | 252 bool have_modifier = FindModifier(MOD_STAGE, value_, &position, &length); |
| 242 if (stage != NULL && *stage != L'\0') { | 253 if (stage != NULL && *stage != L'\0') { |
| 243 std::wstring stage_str(kModStage); | 254 base::string16 stage_str(kModStage); |
| 244 stage_str.append(stage); | 255 stage_str.append(stage); |
| 245 if (!have_modifier) { | 256 if (!have_modifier) { |
| 246 value_.insert(FindInsertionPoint(MOD_STAGE, value_), stage_str); | 257 value_.insert(FindInsertionPoint(MOD_STAGE, value_), stage_str); |
| 247 return true; | 258 return true; |
| 248 } | 259 } |
| 249 if (value_.compare(position, length, stage_str) != 0) { | 260 if (value_.compare(position, length, stage_str) != 0) { |
| 250 value_.replace(position, length, stage_str); | 261 value_.replace(position, length, stage_str); |
| 251 return true; | 262 return true; |
| 252 } | 263 } |
| 253 } else { | 264 } else { |
| 254 if (have_modifier) { | 265 if (have_modifier) { |
| 255 value_.erase(position, length); | 266 value_.erase(position, length); |
| 256 return true; | 267 return true; |
| 257 } | 268 } |
| 258 } | 269 } |
| 259 return false; | 270 return false; |
| 260 } | 271 } |
| 261 | 272 |
| 262 std::wstring ChannelInfo::GetStage() const { | 273 base::string16 ChannelInfo::GetStage() const { |
| 263 std::wstring::size_type position; | 274 base::string16::size_type position; |
| 264 std::wstring::size_type length; | 275 base::string16::size_type length; |
| 265 | 276 |
| 266 if (FindModifier(MOD_STAGE, value_, &position, &length)) { | 277 if (FindModifier(MOD_STAGE, value_, &position, &length)) { |
| 267 // Return the portion after the prefix. | 278 // Return the portion after the prefix. |
| 268 std::wstring::size_type pfx_length = | 279 base::string16::size_type pfx_length = |
| 269 std::wstring::traits_type::length(kModStage); | 280 base::string16::traits_type::length(kModStage); |
| 270 DCHECK_LE(pfx_length, length); | 281 DCHECK_LE(pfx_length, length); |
| 271 return value_.substr(position + pfx_length, length - pfx_length); | 282 return value_.substr(position + pfx_length, length - pfx_length); |
| 272 } | 283 } |
| 273 return std::wstring(); | 284 return base::string16(); |
| 274 } | 285 } |
| 275 | 286 |
| 276 bool ChannelInfo::HasFullSuffix() const { | 287 bool ChannelInfo::HasFullSuffix() const { |
| 277 return HasModifier(SFX_FULL, value_); | 288 return HasModifier(SFX_FULL, value_); |
| 278 } | 289 } |
| 279 | 290 |
| 280 bool ChannelInfo::SetFullSuffix(bool value) { | 291 bool ChannelInfo::SetFullSuffix(bool value) { |
| 281 return SetModifier(SFX_FULL, value, &value_); | 292 return SetModifier(SFX_FULL, value, &value_); |
| 282 } | 293 } |
| 283 | 294 |
| (...skipping 18 matching lines...) Expand all Loading... | |
| 302 | 313 |
| 303 for (int scan = 0; scan < NUM_MODIFIERS; ++scan) { | 314 for (int scan = 0; scan < NUM_MODIFIERS; ++scan) { |
| 304 ModifierIndex index = static_cast<ModifierIndex>(scan); | 315 ModifierIndex index = static_cast<ModifierIndex>(scan); |
| 305 modified = SetModifier(index, false, &value_) || modified; | 316 modified = SetModifier(index, false, &value_) || modified; |
| 306 } | 317 } |
| 307 | 318 |
| 308 return modified; | 319 return modified; |
| 309 } | 320 } |
| 310 | 321 |
| 311 } // namespace installer | 322 } // namespace installer |
| OLD | NEW |