| 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 24 matching lines...) Expand all Loading... |
| 35 #include "V8SpeechRecognitionError.h" | 35 #include "V8SpeechRecognitionError.h" |
| 36 #include "V8SpeechRecognitionResult.h" | 36 #include "V8SpeechRecognitionResult.h" |
| 37 #include "V8SpeechRecognitionResultList.h" | 37 #include "V8SpeechRecognitionResultList.h" |
| 38 #include "V8Storage.h" | 38 #include "V8Storage.h" |
| 39 #include "V8VoidCallback.h" | 39 #include "V8VoidCallback.h" |
| 40 #include "V8Window.h" | 40 #include "V8Window.h" |
| 41 #include "bindings/v8/ArrayValue.h" | 41 #include "bindings/v8/ArrayValue.h" |
| 42 #include "bindings/v8/ExceptionMessages.h" | 42 #include "bindings/v8/ExceptionMessages.h" |
| 43 #include "bindings/v8/ExceptionState.h" | 43 #include "bindings/v8/ExceptionState.h" |
| 44 #include "bindings/v8/V8Binding.h" | 44 #include "bindings/v8/V8Binding.h" |
| 45 #include "bindings/v8/V8Utilities.h" | |
| 46 #include "bindings/v8/custom/V8ArrayBufferViewCustom.h" | 45 #include "bindings/v8/custom/V8ArrayBufferViewCustom.h" |
| 47 #include "bindings/v8/custom/V8Uint8ArrayCustom.h" | 46 #include "bindings/v8/custom/V8Uint8ArrayCustom.h" |
| 48 #include "modules/indexeddb/IDBKeyRange.h" | 47 #include "modules/indexeddb/IDBKeyRange.h" |
| 49 #include "modules/speech/SpeechRecognitionError.h" | 48 #include "modules/speech/SpeechRecognitionError.h" |
| 50 #include "modules/speech/SpeechRecognitionResult.h" | 49 #include "modules/speech/SpeechRecognitionResult.h" |
| 51 #include "modules/speech/SpeechRecognitionResultList.h" | 50 #include "modules/speech/SpeechRecognitionResultList.h" |
| 52 #include "wtf/MathExtras.h" | 51 #include "wtf/MathExtras.h" |
| 53 | 52 |
| 54 #include "V8TextTrack.h" | 53 #include "V8TextTrack.h" |
| 55 #include "core/html/track/TrackBase.h" | 54 #include "core/html/track/TrackBase.h" |
| (...skipping 684 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 740 | 739 |
| 741 return *this; | 740 return *this; |
| 742 } | 741 } |
| 743 | 742 |
| 744 void Dictionary::ConversionContext::throwTypeError(const String& detail) | 743 void Dictionary::ConversionContext::throwTypeError(const String& detail) |
| 745 { | 744 { |
| 746 exceptionState().throwTypeError(detail); | 745 exceptionState().throwTypeError(detail); |
| 747 } | 746 } |
| 748 | 747 |
| 749 } // namespace WebCore | 748 } // namespace WebCore |
| OLD | NEW |