OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 27 matching lines...) Expand all Loading... |
38 #include "wtf/HashMap.h" | 38 #include "wtf/HashMap.h" |
39 #include "wtf/HashSet.h" | 39 #include "wtf/HashSet.h" |
40 #include "wtf/Vector.h" | 40 #include "wtf/Vector.h" |
41 #include "wtf/text/AtomicString.h" | 41 #include "wtf/text/AtomicString.h" |
42 #include "wtf/text/WTFString.h" | 42 #include "wtf/text/WTFString.h" |
43 | 43 |
44 namespace WebCore { | 44 namespace WebCore { |
45 | 45 |
46 class ArrayValue; | 46 class ArrayValue; |
47 class DOMError; | 47 class DOMError; |
48 class DOMWindow; | 48 class LocalDOMWindow; |
49 class Gamepad; | 49 class Gamepad; |
50 class MediaStream; | 50 class MediaStream; |
51 class HeaderMap; | 51 class HeaderMap; |
52 class IDBKeyRange; | 52 class IDBKeyRange; |
53 class MIDIPort; | 53 class MIDIPort; |
54 class MediaKeyError; | 54 class MediaKeyError; |
55 class Notification; | 55 class Notification; |
56 class SpeechRecognitionResult; | 56 class SpeechRecognitionResult; |
57 class SpeechRecognitionResultList; | 57 class SpeechRecognitionResultList; |
58 class Storage; | 58 class Storage; |
(...skipping 17 matching lines...) Expand all Loading... |
76 bool get(const String&, double&, bool& hasValue) const; | 76 bool get(const String&, double&, bool& hasValue) const; |
77 bool get(const String&, double&) const; | 77 bool get(const String&, double&) const; |
78 bool get(const String&, String&) const; | 78 bool get(const String&, String&) const; |
79 bool get(const String&, AtomicString&) const; | 79 bool get(const String&, AtomicString&) const; |
80 bool get(const String&, ScriptValue&) const; | 80 bool get(const String&, ScriptValue&) const; |
81 bool get(const String&, short&) const; | 81 bool get(const String&, short&) const; |
82 bool get(const String&, unsigned short&) const; | 82 bool get(const String&, unsigned short&) const; |
83 bool get(const String&, unsigned&) const; | 83 bool get(const String&, unsigned&) const; |
84 bool get(const String&, unsigned long&) const; | 84 bool get(const String&, unsigned long&) const; |
85 bool get(const String&, unsigned long long&) const; | 85 bool get(const String&, unsigned long long&) const; |
86 bool get(const String&, RefPtrWillBeMember<DOMWindow>&) const; | 86 bool get(const String&, RefPtrWillBeMember<LocalDOMWindow>&) const; |
87 bool get(const String&, RefPtrWillBeMember<Storage>&) const; | 87 bool get(const String&, RefPtrWillBeMember<Storage>&) const; |
88 bool get(const String&, MessagePortArray&) const; | 88 bool get(const String&, MessagePortArray&) const; |
89 bool get(const String&, RefPtr<Uint8Array>&) const; | 89 bool get(const String&, RefPtr<Uint8Array>&) const; |
90 bool get(const String&, RefPtr<ArrayBufferView>&) const; | 90 bool get(const String&, RefPtr<ArrayBufferView>&) const; |
91 bool get(const String&, RefPtrWillBeMember<MIDIPort>&) const; | 91 bool get(const String&, RefPtrWillBeMember<MIDIPort>&) const; |
92 bool get(const String&, RefPtr<MediaKeyError>&) const; | 92 bool get(const String&, RefPtr<MediaKeyError>&) const; |
93 bool get(const String&, RefPtrWillBeMember<TrackBase>&) const; | 93 bool get(const String&, RefPtrWillBeMember<TrackBase>&) const; |
94 bool get(const String&, Member<SpeechRecognitionResult>&) const; | 94 bool get(const String&, Member<SpeechRecognitionResult>&) const; |
95 bool get(const String&, Member<SpeechRecognitionResultList>&) const; | 95 bool get(const String&, Member<SpeechRecognitionResultList>&) const; |
96 bool get(const String&, Member<Gamepad>&) const; | 96 bool get(const String&, Member<Gamepad>&) const; |
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
340 if (context.isNullable() && WebCore::isUndefinedOrNull(v8Value)) | 340 if (context.isNullable() && WebCore::isUndefinedOrNull(v8Value)) |
341 return true; | 341 return true; |
342 | 342 |
343 context.throwTypeError(ExceptionMessages::incorrectPropertyType(key, "does n
ot have a " + context.typeName() + " type.")); | 343 context.throwTypeError(ExceptionMessages::incorrectPropertyType(key, "does n
ot have a " + context.typeName() + " type.")); |
344 return false; | 344 return false; |
345 } | 345 } |
346 | 346 |
347 } | 347 } |
348 | 348 |
349 #endif // Dictionary_h | 349 #endif // Dictionary_h |
OLD | NEW |