| 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 17 matching lines...) Expand all Loading... |
| 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/V8Element.h" |
| 31 #include "bindings/core/v8/V8EventTarget.h" | 31 #include "bindings/core/v8/V8EventTarget.h" |
| 32 #include "bindings/core/v8/V8MediaKeyError.h" | 32 #include "bindings/core/v8/V8MediaKeyError.h" |
| 33 #include "bindings/core/v8/V8MessagePort.h" | 33 #include "bindings/core/v8/V8MessagePort.h" |
| 34 #include "bindings/core/v8/V8Storage.h" | 34 #include "bindings/core/v8/V8Storage.h" |
| 35 #include "bindings/core/v8/V8TextTrack.h" | 35 #include "bindings/core/v8/V8TextTrack.h" |
| 36 #include "bindings/core/v8/V8VoidCallback.h" | 36 #include "bindings/core/v8/V8VoidCallback.h" |
| 37 #include "bindings/core/v8/V8Window.h" | 37 #include "bindings/core/v8/V8Window.h" |
| 38 #include "bindings/core/v8/custom/V8ArrayBufferViewCustom.h" |
| 39 #include "bindings/core/v8/custom/V8Uint8ArrayCustom.h" |
| 38 #include "bindings/modules/v8/V8Gamepad.h" | 40 #include "bindings/modules/v8/V8Gamepad.h" |
| 39 #include "bindings/modules/v8/V8HeaderMap.h" | 41 #include "bindings/modules/v8/V8HeaderMap.h" |
| 40 #include "bindings/modules/v8/V8IDBKeyRange.h" | 42 #include "bindings/modules/v8/V8IDBKeyRange.h" |
| 41 #include "bindings/modules/v8/V8MIDIPort.h" | 43 #include "bindings/modules/v8/V8MIDIPort.h" |
| 42 #include "bindings/modules/v8/V8MediaStream.h" | 44 #include "bindings/modules/v8/V8MediaStream.h" |
| 43 #include "bindings/modules/v8/V8SpeechRecognitionResult.h" | 45 #include "bindings/modules/v8/V8SpeechRecognitionResult.h" |
| 44 #include "bindings/modules/v8/V8SpeechRecognitionResultList.h" | 46 #include "bindings/modules/v8/V8SpeechRecognitionResultList.h" |
| 45 #include "bindings/v8/ArrayValue.h" | 47 #include "bindings/v8/ArrayValue.h" |
| 46 #include "bindings/v8/ExceptionMessages.h" | 48 #include "bindings/v8/ExceptionMessages.h" |
| 47 #include "bindings/v8/ExceptionState.h" | 49 #include "bindings/v8/ExceptionState.h" |
| 48 #include "bindings/v8/V8Binding.h" | 50 #include "bindings/v8/V8Binding.h" |
| 49 #include "bindings/v8/custom/V8ArrayBufferViewCustom.h" | |
| 50 #include "bindings/v8/custom/V8Uint8ArrayCustom.h" | |
| 51 #include "core/html/track/TrackBase.h" | 51 #include "core/html/track/TrackBase.h" |
| 52 #include "modules/gamepad/Gamepad.h" | 52 #include "modules/gamepad/Gamepad.h" |
| 53 #include "modules/indexeddb/IDBKeyRange.h" | 53 #include "modules/indexeddb/IDBKeyRange.h" |
| 54 #include "modules/mediastream/MediaStream.h" | 54 #include "modules/mediastream/MediaStream.h" |
| 55 #include "modules/speech/SpeechRecognitionResult.h" | 55 #include "modules/speech/SpeechRecognitionResult.h" |
| 56 #include "modules/speech/SpeechRecognitionResultList.h" | 56 #include "modules/speech/SpeechRecognitionResultList.h" |
| 57 #include "wtf/MathExtras.h" | 57 #include "wtf/MathExtras.h" |
| 58 | 58 |
| 59 namespace WebCore { | 59 namespace WebCore { |
| 60 | 60 |
| (...skipping 685 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 746 | 746 |
| 747 return *this; | 747 return *this; |
| 748 } | 748 } |
| 749 | 749 |
| 750 void Dictionary::ConversionContext::throwTypeError(const String& detail) | 750 void Dictionary::ConversionContext::throwTypeError(const String& detail) |
| 751 { | 751 { |
| 752 exceptionState().throwTypeError(detail); | 752 exceptionState().throwTypeError(detail); |
| 753 } | 753 } |
| 754 | 754 |
| 755 } // namespace WebCore | 755 } // namespace WebCore |
| OLD | NEW |