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

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

Issue 508073002: IDL: Add PropertyBag class (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/testing/DictionaryTest.h ('k') | Source/core/testing/InternalDictionary.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "config.h" 5 #include "config.h"
6 #include "DictionaryTest.h" 6 #include "DictionaryTest.h"
7 7
8 #include "core/testing/InternalDictionary.h" 8 #include "core/testing/InternalDictionary.h"
9 9
10 namespace blink { 10 namespace blink {
11 11
12 DictionaryTest::DictionaryTest() 12 DictionaryTest::DictionaryTest()
13 { 13 {
14 ScriptWrappable::init(this); 14 ScriptWrappable::init(this);
15 } 15 }
16 16
17 DictionaryTest::~DictionaryTest() 17 DictionaryTest::~DictionaryTest()
18 { 18 {
19 } 19 }
20 20
21 void DictionaryTest::set(const InternalDictionary* testingDictionary) 21 void DictionaryTest::set(const InternalDictionary* testingDictionary)
22 { 22 {
23 reset(); 23 reset();
24 if (testingDictionary->hasLongMember()) 24 if (testingDictionary->hasLongMember())
25 m_longMember = testingDictionary->longMember(); 25 m_longMember = testingDictionary->longMember();
26 m_longMemberWithDefault = testingDictionary->longMemberWithDefault();
27 if (testingDictionary->hasLongOrNullMember())
28 m_longOrNullMember = testingDictionary->longOrNullMember();
29 // |longOrNullMemberWithDefault| has a default value but can be null, so
30 // we need to check availability.
31 if (testingDictionary->hasLongOrNullMemberWithDefault())
32 m_longOrNullMemberWithDefault = testingDictionary->longOrNullMemberWithD efault();
33 if (testingDictionary->hasBooleanMember())
34 m_booleanMember = testingDictionary->booleanMember();
35 if (testingDictionary->hasDoubleMember())
36 m_doubleMember = testingDictionary->doubleMember();
26 m_stringMember = testingDictionary->stringMember(); 37 m_stringMember = testingDictionary->stringMember();
27 if (testingDictionary->hasBooleanOrNullMember()) 38 m_stringMemberWithDefault = testingDictionary->stringMemberWithDefault();
28 m_booleanOrNullMember = testingDictionary->booleanOrNullMember();
29 if (testingDictionary->hasDoubleOrNullMember())
30 m_doubleOrNullMember = testingDictionary->doubleOrNullMember();
31 if (testingDictionary->hasStringSequenceMember()) 39 if (testingDictionary->hasStringSequenceMember())
32 m_stringSequenceMember = testingDictionary->stringSequenceMember(); 40 m_stringSequenceMember = testingDictionary->stringSequenceMember();
41 if (testingDictionary->hasStringSequenceOrNullMember())
42 m_stringSequenceOrNullMember = testingDictionary->stringSequenceOrNullMe mber();
43 if (testingDictionary->hasElementMember())
44 m_elementMember = testingDictionary->elementMember();
45 if (testingDictionary->hasElementOrNullMember())
46 m_elementOrNullMember = testingDictionary->elementOrNullMember();
33 } 47 }
34 48
35 InternalDictionary* DictionaryTest::get() 49 InternalDictionary* DictionaryTest::get()
36 { 50 {
37 InternalDictionary* result = InternalDictionary::create(); 51 InternalDictionary* result = InternalDictionary::create();
38 if (m_longMember) 52 if (m_longMember)
39 result->setLongMember(m_longMember.get()); 53 result->setLongMember(m_longMember.get());
54 result->setLongMemberWithDefault(m_longMemberWithDefault);
55 if (m_longOrNullMember)
56 result->setLongOrNullMember(m_longOrNullMember.get());
57 if (m_longOrNullMemberWithDefault)
58 result->setLongOrNullMemberWithDefault(m_longOrNullMemberWithDefault.get ());
59 if (m_booleanMember)
60 result->setBooleanMember(m_booleanMember.get());
61 if (m_doubleMember)
62 result->setDoubleMember(m_doubleMember.get());
40 result->setStringMember(m_stringMember); 63 result->setStringMember(m_stringMember);
41 if (m_booleanOrNullMember) 64 result->setStringMemberWithDefault(m_stringMemberWithDefault);
42 result->setBooleanOrNullMember(m_booleanOrNullMember.get());
43 if (m_doubleOrNullMember)
44 result->setDoubleOrNullMember(m_doubleOrNullMember.get());
45 if (m_stringSequenceMember) 65 if (m_stringSequenceMember)
46 result->setStringSequenceMember(m_stringSequenceMember.get()); 66 result->setStringSequenceMember(m_stringSequenceMember.get());
67 if (m_stringSequenceOrNullMember)
68 result->setStringSequenceOrNullMember(m_stringSequenceOrNullMember.get() );
69 if (m_elementMember)
70 result->setElementMember(m_elementMember);
71 if (m_elementOrNullMember)
72 result->setElementOrNullMember(m_elementOrNullMember);
47 return result; 73 return result;
48 } 74 }
49 75
50 void DictionaryTest::reset() 76 void DictionaryTest::reset()
51 { 77 {
52 m_longMember = Nullable<unsigned>(); 78 m_longMember = Nullable<int>();
79 m_longMemberWithDefault = -1; // This value should not be returned.
80 m_longOrNullMember = Nullable<int>();
81 m_longOrNullMemberWithDefault = Nullable<int>();
82 m_booleanMember = Nullable<bool>();
83 m_doubleMember = Nullable<double>();
53 m_stringMember = String(); 84 m_stringMember = String();
54 m_booleanOrNullMember = Nullable<bool>(); 85 m_stringMemberWithDefault = String("Should not be returned");
55 m_doubleOrNullMember = Nullable<double>();
56 m_stringSequenceMember = Nullable<Vector<String> >(); 86 m_stringSequenceMember = Nullable<Vector<String> >();
87 m_stringSequenceOrNullMember = Nullable<Vector<String> >();
88 m_elementMember = nullptr;
89 m_elementOrNullMember = nullptr;
57 } 90 }
58 91
59 void DictionaryTest::trace(Visitor*) 92 void DictionaryTest::trace(Visitor*)
60 { 93 {
61 } 94 }
62 95
63 } 96 }
OLDNEW
« no previous file with comments | « Source/core/testing/DictionaryTest.h ('k') | Source/core/testing/InternalDictionary.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698