Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Unified Diff: third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.h

Issue 2805813004: bindings: Preprocess IDL types in native_value_traits_type_name(). (Closed)
Patch Set: Rebase after The Blink Rename Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.h
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.h b/third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.h
index 27f0acb21e5ae50ee4f2ebd74d45d272ddfa8984..0c37adb096d4ad7470aec16a228a435c95c554d8 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.h
+++ b/third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.h
@@ -43,6 +43,10 @@ class CORE_EXPORT TestDictionary : public IDLDictionaryBase {
TestDictionary(const TestDictionary&);
TestDictionary& operator=(const TestDictionary&);
+ bool hasAnyInRecordMember() const;
+ const Vector<std::pair<String, ScriptValue>>& anyInRecordMember() const;
+ void setAnyInRecordMember(const Vector<std::pair<String, ScriptValue>>&);
+
bool hasAnyMember() const;
ScriptValue anyMember() const;
void setAnyMember(ScriptValue);
@@ -201,6 +205,8 @@ class CORE_EXPORT TestDictionary : public IDLDictionaryBase {
DECLARE_VIRTUAL_TRACE();
private:
+ bool m_hasAnyInRecordMember = false;
+ Vector<std::pair<String, ScriptValue>> m_anyInRecordMember;
ScriptValue m_anyMember;
bool m_hasBooleanMember = false;
bool m_booleanMember;

Powered by Google App Engine
This is Rietveld 408576698