// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "gin/array_buffer.h" #include "base/check_op.h" #include "build/build_config.h" #include "gin/per_isolate_data.h" #include "gin/public/isolate_holder.h" #include "gin/test/v8_test.h" namespace gin { ArrayBufferTest; namespace { const size_t kBufferLength = …; } // Make sure we can allocate, access and free memory. TEST_F(ArrayBufferTest, AllocateAndFreeBuffer) { … } } // namespace gin