| Index: mojo/public/cpp/bindings/array_traits_wtf_vector.h
|
| diff --git a/mojo/public/cpp/bindings/array_traits_wtf_vector.h b/mojo/public/cpp/bindings/array_traits_wtf_vector.h
|
| index 9b3755ad4f161be04e67371a140b9da80a8d8f39..6e207351fd070e157a08de6de53d5c130647740c 100644
|
| --- a/mojo/public/cpp/bindings/array_traits_wtf_vector.h
|
| +++ b/mojo/public/cpp/bindings/array_traits_wtf_vector.h
|
| @@ -36,7 +36,10 @@ struct ArrayTraits<WTF::Vector<U>> {
|
| return input[index];
|
| }
|
|
|
| - static void Resize(WTF::Vector<U>& input, size_t size) { input.resize(size); }
|
| + static bool Resize(WTF::Vector<U>& input, size_t size) {
|
| + input.resize(size);
|
| + return true;
|
| + }
|
| };
|
|
|
| } // namespace mojo
|
|
|