| Index: chrome/common/extensions/update_manifest.cc
|
| diff --git a/chrome/common/extensions/update_manifest.cc b/chrome/common/extensions/update_manifest.cc
|
| index d2ceda7814348484b6ab0e70cb511c81ecc04665..4e1cdd54bcf9a8f405270114ef61fe201cf79f10 100644
|
| --- a/chrome/common/extensions/update_manifest.cc
|
| +++ b/chrome/common/extensions/update_manifest.cc
|
| @@ -140,7 +140,7 @@ static bool ParseSingleAppTag(xmlNode* app_node, xmlNs* xml_namespace,
|
| *error_detail = "Too many updatecheck tags on app (expecting only 1).";
|
| return false;
|
| }
|
| - if (updates.size() == 0) {
|
| + if (updates.empty()) {
|
| *error_detail = "Missing updatecheck on app.";
|
| return false;
|
| }
|
|
|