| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |