Index: third_party/WebKit/Source/core/html/imports/HTMLImportLoader.cpp |
diff --git a/third_party/WebKit/Source/core/html/imports/HTMLImportLoader.cpp b/third_party/WebKit/Source/core/html/imports/HTMLImportLoader.cpp |
index 1b85900a09d694398158bb46ea5fe176d2855390..84686bbfb047e60e026a75574676cc533b57195d 100644 |
--- a/third_party/WebKit/Source/core/html/imports/HTMLImportLoader.cpp |
+++ b/third_party/WebKit/Source/core/html/imports/HTMLImportLoader.cpp |
@@ -189,7 +189,7 @@ void HTMLImportLoader::moveToFirst(HTMLImportChild* import) { |
void HTMLImportLoader::addImport(HTMLImportChild* import) { |
DCHECK_EQ(kNotFound, m_imports.find(import)); |
- m_imports.append(import); |
+ m_imports.push_back(import); |
import->normalize(); |
if (isDone()) |
import->didFinishLoading(); |