Index: third_party/WebKit/Source/core/html/HTMLIFrameElementPermissions.cpp |
diff --git a/third_party/WebKit/Source/core/html/HTMLIFrameElementPermissions.cpp b/third_party/WebKit/Source/core/html/HTMLIFrameElementPermissions.cpp |
index 0fe5e9f39e81d700674f58934007fac24e88440a..8e22e8b423f4e83299e8bf0496d21c3c74e72954 100644 |
--- a/third_party/WebKit/Source/core/html/HTMLIFrameElementPermissions.cpp |
+++ b/third_party/WebKit/Source/core/html/HTMLIFrameElementPermissions.cpp |
@@ -60,7 +60,7 @@ HTMLIFrameElementPermissions::parseDelegatedPermissions( |
for (size_t i = 0; i < tokens.size(); ++i) { |
WebPermissionType type; |
if (getPermissionType(tokens[i], &type)) { |
- permissions.append(type); |
+ permissions.push_back(type); |
} else { |
if (numTokenErrors) |
tokenErrors.append(", '"); |