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 11 matching lines...) Expand all Loading... |
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/core/v8/Dictionary.h" | 27 #include "bindings/core/v8/Dictionary.h" |
28 | 28 |
29 #include "bindings/core/v8/ArrayValue.h" | 29 #include "bindings/core/v8/ArrayValue.h" |
30 #include "bindings/core/v8/ExceptionMessages.h" | 30 #include "bindings/core/v8/ExceptionMessages.h" |
31 #include "bindings/core/v8/ExceptionState.h" | 31 #include "bindings/core/v8/ExceptionState.h" |
| 32 #include "bindings/core/v8/V8ArrayBufferView.h" |
32 #include "bindings/core/v8/V8Binding.h" | 33 #include "bindings/core/v8/V8Binding.h" |
33 #include "bindings/core/v8/V8DOMError.h" | 34 #include "bindings/core/v8/V8DOMError.h" |
34 #include "bindings/core/v8/V8Element.h" | 35 #include "bindings/core/v8/V8Element.h" |
35 #include "bindings/core/v8/V8EventTarget.h" | 36 #include "bindings/core/v8/V8EventTarget.h" |
36 #include "bindings/core/v8/V8MediaKeyError.h" | 37 #include "bindings/core/v8/V8MediaKeyError.h" |
37 #include "bindings/core/v8/V8MessagePort.h" | 38 #include "bindings/core/v8/V8MessagePort.h" |
38 #include "bindings/core/v8/V8Path2D.h" | 39 #include "bindings/core/v8/V8Path2D.h" |
39 #include "bindings/core/v8/V8Storage.h" | 40 #include "bindings/core/v8/V8Storage.h" |
40 #include "bindings/core/v8/V8TextTrack.h" | 41 #include "bindings/core/v8/V8TextTrack.h" |
41 #include "bindings/core/v8/V8VoidCallback.h" | 42 #include "bindings/core/v8/V8VoidCallback.h" |
42 #include "bindings/core/v8/V8Window.h" | 43 #include "bindings/core/v8/V8Window.h" |
43 #include "bindings/core/v8/custom/V8ArrayBufferViewCustom.h" | |
44 #include "bindings/core/v8/custom/V8Uint8ArrayCustom.h" | |
45 #include "bindings/modules/v8/V8Gamepad.h" | 44 #include "bindings/modules/v8/V8Gamepad.h" |
46 #include "bindings/modules/v8/V8Headers.h" | 45 #include "bindings/modules/v8/V8Headers.h" |
47 #include "bindings/modules/v8/V8IDBKeyRange.h" | 46 #include "bindings/modules/v8/V8IDBKeyRange.h" |
48 #include "bindings/modules/v8/V8MIDIPort.h" | 47 #include "bindings/modules/v8/V8MIDIPort.h" |
49 #include "bindings/modules/v8/V8MediaStream.h" | 48 #include "bindings/modules/v8/V8MediaStream.h" |
50 #include "bindings/modules/v8/V8SpeechRecognitionResult.h" | 49 #include "bindings/modules/v8/V8SpeechRecognitionResult.h" |
51 #include "bindings/modules/v8/V8SpeechRecognitionResultList.h" | 50 #include "bindings/modules/v8/V8SpeechRecognitionResultList.h" |
52 #include "core/html/track/TrackBase.h" | 51 #include "core/html/track/TrackBase.h" |
53 #include "modules/gamepad/Gamepad.h" | 52 #include "modules/gamepad/Gamepad.h" |
54 #include "modules/indexeddb/IDBKeyRange.h" | 53 #include "modules/indexeddb/IDBKeyRange.h" |
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
295 | 294 |
296 return *this; | 295 return *this; |
297 } | 296 } |
298 | 297 |
299 void Dictionary::ConversionContext::throwTypeError(const String& detail) | 298 void Dictionary::ConversionContext::throwTypeError(const String& detail) |
300 { | 299 { |
301 exceptionState().throwTypeError(detail); | 300 exceptionState().throwTypeError(detail); |
302 } | 301 } |
303 | 302 |
304 } // namespace blink | 303 } // namespace blink |
OLD | NEW |