// Copyright 2016 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "mojo/public/cpp/bindings/array.h" #include "mojo/public/cpp/bindings/lib/fixed_buffer.h" #include "mojo/public/cpp/bindings/lib/serialization.h" #include "mojo/public/cpp/bindings/lib/validate_params.h" #include "mojo/public/cpp/bindings/map.h" #include "mojo/public/cpp/bindings/string.h" #include "mojo/public/cpp/bindings/tests/container_test_util.h" #include "testing/gtest/include/gtest/gtest.h" namespace WTF { class String; } namespace mojo { template class WTFArray; template class WTFMap; namespace test { namespace { struct StringIntData { const char* string_data; int int_data; } kStringIntData[] = { {"one", 1}, {"two", 2}, {"three", 3}, {"four", 4}, }; const size_t kStringIntDataSize = 4; } // namespace template