| Index: third_party/WebKit/Source/web/ColorChooserPopupUIController.cpp
|
| diff --git a/third_party/WebKit/Source/web/ColorChooserPopupUIController.cpp b/third_party/WebKit/Source/web/ColorChooserPopupUIController.cpp
|
| index 976daabfefb769e29baaebffeb6f0887cd3351ad..8df6c6232d52fffb913ed93ae5c36f1c3844afb9 100644
|
| --- a/third_party/WebKit/Source/web/ColorChooserPopupUIController.cpp
|
| +++ b/third_party/WebKit/Source/web/ColorChooserPopupUIController.cpp
|
| @@ -89,7 +89,7 @@ void ColorChooserPopupUIController::writeDocument(SharedBuffer* data) {
|
| Vector<ColorSuggestion> suggestions = m_client->suggestions();
|
| Vector<String> suggestionValues;
|
| for (unsigned i = 0; i < suggestions.size(); i++)
|
| - suggestionValues.append(suggestions[i].color.serialized());
|
| + suggestionValues.push_back(suggestions[i].color.serialized());
|
| IntRect anchorRectInScreen = m_chromeClient->viewportToScreen(
|
| m_client->elementRectRelativeToViewport(), m_frame->view());
|
|
|
|
|