| 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 370 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 410 { | 411 { | 
| 411     v8::Local<v8::Value> v8Value; | 412     v8::Local<v8::Value> v8Value; | 
| 412     if (!getKey(key, v8Value) || WebCore::isUndefinedOrNull(v8Value)) | 413     if (!getKey(key, v8Value) || WebCore::isUndefinedOrNull(v8Value)) | 
| 413         return false; | 414         return false; | 
| 414 | 415 | 
| 415     TOSTRING_DEFAULT(V8StringResource<>, stringValue, v8Value, false); | 416     TOSTRING_DEFAULT(V8StringResource<>, stringValue, v8Value, false); | 
| 416     value = stringValue; | 417     value = stringValue; | 
| 417     return true; | 418     return true; | 
| 418 } | 419 } | 
| 419 | 420 | 
|  | 421 bool Dictionary::getWithUndefinedOrNullCheck(const String& key, RefPtrWillBeMemb
     er<Element>& value) const | 
|  | 422 { | 
|  | 423     v8::Local<v8::Value> v8Value; | 
|  | 424     if (!getKey(key, v8Value) || WebCore::isUndefinedOrNull(v8Value)) | 
|  | 425         return false; | 
|  | 426 | 
|  | 427     value = V8Element::toNativeWithTypeCheck(m_isolate, v8Value); | 
|  | 428     return true; | 
|  | 429 } | 
|  | 430 | 
| 420 bool Dictionary::get(const String& key, RefPtr<Uint8Array>& value) const | 431 bool Dictionary::get(const String& key, RefPtr<Uint8Array>& value) const | 
| 421 { | 432 { | 
| 422     v8::Local<v8::Value> v8Value; | 433     v8::Local<v8::Value> v8Value; | 
| 423     if (!getKey(key, v8Value)) | 434     if (!getKey(key, v8Value)) | 
| 424         return false; | 435         return false; | 
| 425 | 436 | 
| 426     value = V8Uint8Array::toNativeWithTypeCheck(m_isolate, v8Value); | 437     value = V8Uint8Array::toNativeWithTypeCheck(m_isolate, v8Value); | 
| 427     return true; | 438     return true; | 
| 428 } | 439 } | 
| 429 | 440 | 
| (...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 735 | 746 | 
| 736     return *this; | 747     return *this; | 
| 737 } | 748 } | 
| 738 | 749 | 
| 739 void Dictionary::ConversionContext::throwTypeError(const String& detail) | 750 void Dictionary::ConversionContext::throwTypeError(const String& detail) | 
| 740 { | 751 { | 
| 741     exceptionState().throwTypeError(detail); | 752     exceptionState().throwTypeError(detail); | 
| 742 } | 753 } | 
| 743 | 754 | 
| 744 } // namespace WebCore | 755 } // namespace WebCore | 
| OLD | NEW | 
|---|