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

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

Issue 724733002: Support for [Clamp] and [EnforceRange] to IDL dictionary. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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/ScriptValue.h"
10 #include "bindings/core/v8/ScriptWrappable.h" 10 #include "bindings/core/v8/ScriptWrappable.h"
(...skipping 25 matching lines...) Expand all
36 DictionaryTest(); 36 DictionaryTest();
37 37
38 void reset(); 38 void reset();
39 39
40 // The reason to use Nullable<T> is convenience; we use Nullable<T> here to 40 // The reason to use Nullable<T> is convenience; we use Nullable<T> here to
41 // record whether the member field is set or not. Some members are not 41 // record whether the member field is set or not. Some members are not
42 // wrapped with Nullable because: 42 // wrapped with Nullable because:
43 // - |longMemberWithDefault| has a non-null default value 43 // - |longMemberWithDefault| has a non-null default value
44 // - String and PtrTypes can express whether they are null 44 // - String and PtrTypes can express whether they are null
45 Nullable<int> m_longMember; 45 Nullable<int> m_longMember;
46 Nullable<int> m_longMemberWithClamp;
46 int m_longMemberWithDefault; 47 int m_longMemberWithDefault;
47 Nullable<int> m_longOrNullMember; 48 Nullable<int> m_longOrNullMember;
48 Nullable<int> m_longOrNullMemberWithDefault; 49 Nullable<int> m_longOrNullMemberWithDefault;
49 Nullable<bool> m_booleanMember; 50 Nullable<bool> m_booleanMember;
50 Nullable<double> m_doubleMember; 51 Nullable<double> m_doubleMember;
51 String m_stringMember; 52 String m_stringMember;
52 String m_stringMemberWithDefault; 53 String m_stringMemberWithDefault;
53 Nullable<Vector<String> > m_stringSequenceMember; 54 Nullable<Vector<String> > m_stringSequenceMember;
54 Nullable<Vector<String> > m_stringSequenceOrNullMember; 55 Nullable<Vector<String> > m_stringSequenceOrNullMember;
55 String m_enumMember; 56 String m_enumMember;
56 String m_enumMemberWithDefault; 57 String m_enumMemberWithDefault;
57 String m_enumOrNullMember; 58 String m_enumOrNullMember;
58 RefPtrWillBeMember<Element> m_elementMember; 59 RefPtrWillBeMember<Element> m_elementMember;
59 RefPtrWillBeMember<Element> m_elementOrNullMember; 60 RefPtrWillBeMember<Element> m_elementOrNullMember;
60 ScriptValue m_objectMember; 61 ScriptValue m_objectMember;
61 ScriptValue m_objectOrNullMemberWithDefault; 62 ScriptValue m_objectOrNullMemberWithDefault;
62 }; 63 };
63 64
64 } // namespace blink 65 } // namespace blink
65 66
66 #endif // DictionaryTest_h 67 #endif // DictionaryTest_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698