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 |
11 * notice, this list of conditions and the following disclaimer in the | 11 * notice, this list of conditions and the following disclaimer in the |
12 * documentation and/or other materials provided with the distribution. | 12 * documentation and/or other materials provided with the distribution. |
13 * | 13 * |
14 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY | 14 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY |
15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | 15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
16 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | 16 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
17 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY | 17 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY |
18 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | 18 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
19 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 19 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
20 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 20 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
21 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 21 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
24 */ | 24 */ |
25 | 25 |
26 #include "config.h" | 26 #include "config.h" |
27 #include "bindings/v8/Dictionary.h" | 27 #include "bindings/v8/Dictionary.h" |
28 | 28 |
29 #include "bindings/core/v8/V8DOMError.h" | 29 #include "bindings/core/v8/V8DOMError.h" |
| 30 #include "bindings/core/v8/V8Element.h" |
30 #include "bindings/core/v8/V8EventTarget.h" | 31 #include "bindings/core/v8/V8EventTarget.h" |
31 #include "bindings/core/v8/V8MediaKeyError.h" | 32 #include "bindings/core/v8/V8MediaKeyError.h" |
32 #include "bindings/core/v8/V8MessagePort.h" | 33 #include "bindings/core/v8/V8MessagePort.h" |
33 #include "bindings/core/v8/V8Storage.h" | 34 #include "bindings/core/v8/V8Storage.h" |
34 #include "bindings/core/v8/V8TextTrack.h" | 35 #include "bindings/core/v8/V8TextTrack.h" |
35 #include "bindings/core/v8/V8VoidCallback.h" | 36 #include "bindings/core/v8/V8VoidCallback.h" |
36 #include "bindings/core/v8/V8Window.h" | 37 #include "bindings/core/v8/V8Window.h" |
37 #include "bindings/modules/v8/V8Gamepad.h" | 38 #include "bindings/modules/v8/V8Gamepad.h" |
38 #include "bindings/modules/v8/V8HeaderMap.h" | 39 #include "bindings/modules/v8/V8HeaderMap.h" |
39 #include "bindings/modules/v8/V8IDBKeyRange.h" | 40 #include "bindings/modules/v8/V8IDBKeyRange.h" |
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
412 { | 413 { |
413 v8::Local<v8::Value> v8Value; | 414 v8::Local<v8::Value> v8Value; |
414 if (!getKey(key, v8Value) || WebCore::isUndefinedOrNull(v8Value)) | 415 if (!getKey(key, v8Value) || WebCore::isUndefinedOrNull(v8Value)) |
415 return false; | 416 return false; |
416 | 417 |
417 TOSTRING_DEFAULT(V8StringResource<>, stringValue, v8Value, false); | 418 TOSTRING_DEFAULT(V8StringResource<>, stringValue, v8Value, false); |
418 value = stringValue; | 419 value = stringValue; |
419 return true; | 420 return true; |
420 } | 421 } |
421 | 422 |
| 423 bool Dictionary::getWithUndefinedOrNullCheck(const String& key, RefPtrWillBeMemb
er<Element>& value) const |
| 424 { |
| 425 v8::Local<v8::Value> v8Value; |
| 426 if (!getKey(key, v8Value) || WebCore::isUndefinedOrNull(v8Value)) |
| 427 return false; |
| 428 |
| 429 value = V8Element::toNativeWithTypeCheck(m_isolate, v8Value); |
| 430 return true; |
| 431 } |
| 432 |
422 bool Dictionary::get(const String& key, RefPtr<Uint8Array>& value) const | 433 bool Dictionary::get(const String& key, RefPtr<Uint8Array>& value) const |
423 { | 434 { |
424 v8::Local<v8::Value> v8Value; | 435 v8::Local<v8::Value> v8Value; |
425 if (!getKey(key, v8Value)) | 436 if (!getKey(key, v8Value)) |
426 return false; | 437 return false; |
427 | 438 |
428 value = V8Uint8Array::toNativeWithTypeCheck(m_isolate, v8Value); | 439 value = V8Uint8Array::toNativeWithTypeCheck(m_isolate, v8Value); |
429 return true; | 440 return true; |
430 } | 441 } |
431 | 442 |
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
747 | 758 |
748 return *this; | 759 return *this; |
749 } | 760 } |
750 | 761 |
751 void Dictionary::ConversionContext::throwTypeError(const String& detail) | 762 void Dictionary::ConversionContext::throwTypeError(const String& detail) |
752 { | 763 { |
753 exceptionState().throwTypeError(detail); | 764 exceptionState().throwTypeError(detail); |
754 } | 765 } |
755 | 766 |
756 } // namespace WebCore | 767 } // namespace WebCore |
OLD | NEW |