| Index: third_party/WebKit/Source/modules/quota/StorageQuota.cpp
|
| diff --git a/third_party/WebKit/Source/modules/quota/StorageQuota.cpp b/third_party/WebKit/Source/modules/quota/StorageQuota.cpp
|
| index 1e948b6f57cb2464ac032a8f2e95437ec0b90e9d..f8d6a2e7050d44f6f897c33640054587f70da375 100644
|
| --- a/third_party/WebKit/Source/modules/quota/StorageQuota.cpp
|
| +++ b/third_party/WebKit/Source/modules/quota/StorageQuota.cpp
|
| @@ -73,7 +73,7 @@ StorageQuota::StorageQuota() {}
|
| Vector<String> StorageQuota::supportedTypes() const {
|
| Vector<String> types;
|
| for (size_t i = 0; i < WTF_ARRAY_LENGTH(storageTypeMappings); ++i)
|
| - types.append(storageTypeMappings[i].name);
|
| + types.push_back(storageTypeMappings[i].name);
|
| return types;
|
| }
|
|
|
|
|