| 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 "V8SpeechRecognitionResult.h" | 35 #include "V8SpeechRecognitionResult.h" |
| 36 #include "V8SpeechRecognitionResultList.h" | 36 #include "V8SpeechRecognitionResultList.h" |
| 37 #include "V8Storage.h" | 37 #include "V8Storage.h" |
| 38 #include "V8VoidCallback.h" | 38 #include "V8VoidCallback.h" |
| 39 #include "V8Window.h" | 39 #include "V8Window.h" |
| 40 #include "bindings/v8/ArrayValue.h" | 40 #include "bindings/v8/ArrayValue.h" |
| 41 #include "bindings/v8/V8Binding.h" | 41 #include "bindings/v8/V8Binding.h" |
| 42 #include "bindings/v8/V8Utilities.h" | 42 #include "bindings/v8/V8Utilities.h" |
| 43 #include "bindings/v8/custom/V8ArrayBufferViewCustom.h" | 43 #include "bindings/v8/custom/V8ArrayBufferViewCustom.h" |
| 44 #include "bindings/v8/custom/V8Uint8ArrayCustom.h" | 44 #include "bindings/v8/custom/V8Uint8ArrayCustom.h" |
| 45 #include "core/dom/DOMStringList.h" | |
| 46 #include "modules/indexeddb/IDBKeyRange.h" | 45 #include "modules/indexeddb/IDBKeyRange.h" |
| 47 #include "modules/speech/SpeechRecognitionError.h" | 46 #include "modules/speech/SpeechRecognitionError.h" |
| 48 #include "modules/speech/SpeechRecognitionResult.h" | 47 #include "modules/speech/SpeechRecognitionResult.h" |
| 49 #include "modules/speech/SpeechRecognitionResultList.h" | 48 #include "modules/speech/SpeechRecognitionResultList.h" |
| 50 #include "wtf/MathExtras.h" | 49 #include "wtf/MathExtras.h" |
| 51 | 50 |
| 52 #include "V8TextTrack.h" | 51 #include "V8TextTrack.h" |
| 53 #include "core/html/track/TrackBase.h" | 52 #include "core/html/track/TrackBase.h" |
| 54 | 53 |
| 55 #include "V8MediaStream.h" | 54 #include "V8MediaStream.h" |
| (...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 593 if (!options->Has(key)) | 592 if (!options->Has(key)) |
| 594 continue; | 593 continue; |
| 595 V8TRYCATCH_FOR_V8STRINGRESOURCE_RETURN(V8StringResource<>, stringKey, ke
y, false); | 594 V8TRYCATCH_FOR_V8STRINGRESOURCE_RETURN(V8StringResource<>, stringKey, ke
y, false); |
| 596 names.append(stringKey); | 595 names.append(stringKey); |
| 597 } | 596 } |
| 598 | 597 |
| 599 return true; | 598 return true; |
| 600 } | 599 } |
| 601 | 600 |
| 602 } // namespace WebCore | 601 } // namespace WebCore |
| OLD | NEW |