| Index: third_party/WebKit/Source/platform/WebIconSizesParser.cpp
|
| diff --git a/third_party/WebKit/Source/platform/WebIconSizesParser.cpp b/third_party/WebKit/Source/platform/WebIconSizesParser.cpp
|
| index 1303dce39753dcff6bff85e84563df3593f162c6..4652fc2e1baf1e033a272643e65b16f0dddc1062 100644
|
| --- a/third_party/WebKit/Source/platform/WebIconSizesParser.cpp
|
| +++ b/third_party/WebKit/Source/platform/WebIconSizesParser.cpp
|
| @@ -66,7 +66,7 @@ WebVector<WebSize> WebIconSizesParser::parseIconSizes(
|
| // See if the current size is "any".
|
| if (sizesString.findIgnoringCase("any", i) == i &&
|
| (i + 3 == length || isWhitespace(sizesString[i + 3]))) {
|
| - iconSizes.append(WebSize(0, 0));
|
| + iconSizes.push_back(WebSize(0, 0));
|
| i = i + 3;
|
| continue;
|
| }
|
| @@ -98,7 +98,7 @@ WebVector<WebSize> WebIconSizesParser::parseIconSizes(
|
| unsigned heightEnd = i;
|
|
|
| // Append the parsed size to iconSizes.
|
| - iconSizes.append(
|
| + iconSizes.push_back(
|
| WebSize(partialStringToInt(sizesString, widthStart, widthEnd),
|
| partialStringToInt(sizesString, heightStart, heightEnd)));
|
| }
|
|
|