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

Side by Side Diff: Source/core/testing/DictionaryTest.h

Issue 590443002: IDL: object type support for IDL dictionary (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 6 years, 2 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef DictionaryTest_h 5 #ifndef DictionaryTest_h
6 #define DictionaryTest_h 6 #define DictionaryTest_h
7 7
8 #include "bindings/core/v8/Nullable.h" 8 #include "bindings/core/v8/Nullable.h"
9 #include "bindings/core/v8/ScriptValue.h"
9 #include "bindings/core/v8/ScriptWrappable.h" 10 #include "bindings/core/v8/ScriptWrappable.h"
10 #include "core/dom/Element.h" 11 #include "core/dom/Element.h"
11 #include "platform/heap/Handle.h" 12 #include "platform/heap/Handle.h"
12 #include "wtf/text/WTFString.h" 13 #include "wtf/text/WTFString.h"
13 14
14 namespace blink { 15 namespace blink {
15 16
16 class InternalDictionary; 17 class InternalDictionary;
17 18
18 class DictionaryTest : public GarbageCollectedFinalized<DictionaryTest>, public ScriptWrappable { 19 class DictionaryTest : public GarbageCollectedFinalized<DictionaryTest>, public ScriptWrappable {
(...skipping 30 matching lines...) Expand all
49 Nullable<double> m_doubleMember; 50 Nullable<double> m_doubleMember;
50 String m_stringMember; 51 String m_stringMember;
51 String m_stringMemberWithDefault; 52 String m_stringMemberWithDefault;
52 Nullable<Vector<String> > m_stringSequenceMember; 53 Nullable<Vector<String> > m_stringSequenceMember;
53 Nullable<Vector<String> > m_stringSequenceOrNullMember; 54 Nullable<Vector<String> > m_stringSequenceOrNullMember;
54 String m_enumMember; 55 String m_enumMember;
55 String m_enumMemberWithDefault; 56 String m_enumMemberWithDefault;
56 String m_enumOrNullMember; 57 String m_enumOrNullMember;
57 RefPtrWillBeMember<Element> m_elementMember; 58 RefPtrWillBeMember<Element> m_elementMember;
58 RefPtrWillBeMember<Element> m_elementOrNullMember; 59 RefPtrWillBeMember<Element> m_elementOrNullMember;
60 ScriptValue m_objectMember;
61 ScriptValue m_objectOrNullMemberWithDefault;
59 }; 62 };
60 63
61 } // namespace blink 64 } // namespace blink
62 65
63 #endif // DictionaryTest_h 66 #endif // DictionaryTest_h
OLDNEW
« no previous file with comments | « Source/bindings/tests/results/core/V8TestDictionary.cpp ('k') | Source/core/testing/DictionaryTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698