| Index: third_party/WebKit/Source/core/inspector/NetworkResourcesData.cpp
|
| diff --git a/third_party/WebKit/Source/core/inspector/NetworkResourcesData.cpp b/third_party/WebKit/Source/core/inspector/NetworkResourcesData.cpp
|
| index 349ab3e0d5567ec14d7b9278d2ef8ec88cc387b6..bf1b57008d9e7163912be970723a560c990a19b9 100644
|
| --- a/third_party/WebKit/Source/core/inspector/NetworkResourcesData.cpp
|
| +++ b/third_party/WebKit/Source/core/inspector/NetworkResourcesData.cpp
|
| @@ -264,7 +264,7 @@ void NetworkResourcesData::setResourceContent(const String& requestId,
|
| // was loading, so remove it, if any.
|
| if (resourceData->hasContent())
|
| m_contentSize -= resourceData->removeContent();
|
| - m_requestIdsDeque.append(requestId);
|
| + m_requestIdsDeque.push_back(requestId);
|
| resourceData->setContent(content, base64Encoded);
|
| m_contentSize += dataLength;
|
| }
|
| @@ -282,7 +282,7 @@ void NetworkResourcesData::maybeAddResourceData(const String& requestId,
|
| if (resourceData->isContentEvicted())
|
| return;
|
| if (ensureFreeSpace(dataLength) && !resourceData->isContentEvicted()) {
|
| - m_requestIdsDeque.append(requestId);
|
| + m_requestIdsDeque.push_back(requestId);
|
| resourceData->appendData(data, dataLength);
|
| m_contentSize += dataLength;
|
| }
|
|
|