| Index: third_party/WebKit/Source/core/testing/RecordTest.h
|
| diff --git a/third_party/WebKit/Source/core/testing/RecordTest.h b/third_party/WebKit/Source/core/testing/RecordTest.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ceb6f87fee83032ab57d5c6dc970cd5801812baa
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/core/testing/RecordTest.h
|
| @@ -0,0 +1,69 @@
|
| +// Copyright 2017 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.
|
| +
|
| +#ifndef RecordTest_h
|
| +#define RecordTest_h
|
| +
|
| +#include <utility>
|
| +#include "bindings/core/v8/BooleanOrByteStringByteStringRecord.h"
|
| +#include "bindings/core/v8/FloatOrStringElementRecord.h"
|
| +#include "bindings/core/v8/Nullable.h"
|
| +#include "bindings/core/v8/ScriptWrappable.h"
|
| +#include "core/dom/Element.h"
|
| +#include "platform/heap/Handle.h"
|
| +#include "wtf/Vector.h"
|
| +#include "wtf/text/WTFString.h"
|
| +
|
| +namespace blink {
|
| +
|
| +class RecordTest final : public GarbageCollectedFinalized<RecordTest>,
|
| + public ScriptWrappable {
|
| + DEFINE_WRAPPERTYPEINFO();
|
| +
|
| + public:
|
| + static RecordTest* create() { return new RecordTest; }
|
| + ~RecordTest();
|
| +
|
| + void setStringLongRecord(const Vector<std::pair<String, int32_t>>& arg);
|
| + Vector<std::pair<String, int32_t>> getStringLongRecord();
|
| +
|
| + void setNullableStringLongRecord(
|
| + const Nullable<Vector<std::pair<String, int32_t>>>& arg);
|
| + Nullable<Vector<std::pair<String, int32_t>>> getNullableStringLongRecord();
|
| +
|
| + Vector<std::pair<String, String>> getByteStringByteStringRecord();
|
| + void setByteStringByteStringRecord(
|
| + const Vector<std::pair<String, String>>& arg);
|
| +
|
| + void setStringElementRecord(
|
| + const HeapVector<std::pair<String, Member<Element>>>& arg);
|
| + HeapVector<std::pair<String, Member<Element>>> getStringElementRecord();
|
| +
|
| + using NestedRecordType =
|
| + Vector<std::pair<String, Vector<std::pair<String, bool>>>>;
|
| + void setUSVStringUSVStringBooleanRecordRecord(const NestedRecordType& arg);
|
| + NestedRecordType getUSVStringUSVStringBooleanRecordRecord();
|
| +
|
| + Vector<std::pair<String, Vector<String>>>
|
| + returnStringByteStringSequenceRecord();
|
| +
|
| + bool unionReceivedARecord(const BooleanOrByteStringByteStringRecord& arg);
|
| +
|
| + void setFloatOrStringElementRecord(const FloatOrStringElementRecord&){};
|
| +
|
| + DECLARE_TRACE();
|
| +
|
| + private:
|
| + RecordTest();
|
| +
|
| + Vector<std::pair<String, int32_t>> m_stringLongRecord;
|
| + Nullable<Vector<std::pair<String, int32_t>>> m_nullableStringLongRecord;
|
| + Vector<std::pair<String, String>> m_byteStringByteStringRecord;
|
| + HeapVector<std::pair<String, Member<Element>>> m_stringElementRecord;
|
| + NestedRecordType m_USVStringUSVStringBooleanRecordRecord;
|
| +};
|
| +
|
| +} // namespace blink
|
| +
|
| +#endif // RecordTest_h
|
|
|