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 18 matching lines...) Expand all Loading... |
29 #include "V8CSSFontFaceRule.h" | 29 #include "V8CSSFontFaceRule.h" |
30 #include "V8DOMError.h" | 30 #include "V8DOMError.h" |
31 #include "V8EventTarget.h" | 31 #include "V8EventTarget.h" |
32 #include "V8IDBKeyRange.h" | 32 #include "V8IDBKeyRange.h" |
33 #include "V8MIDIPort.h" | 33 #include "V8MIDIPort.h" |
34 #include "V8MediaKeyError.h" | 34 #include "V8MediaKeyError.h" |
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 "V8Uint8Array.h" | |
40 #include "V8VoidCallback.h" | 39 #include "V8VoidCallback.h" |
41 #include "V8Window.h" | 40 #include "V8Window.h" |
42 #include "bindings/v8/ArrayValue.h" | 41 #include "bindings/v8/ArrayValue.h" |
43 #include "bindings/v8/V8Binding.h" | 42 #include "bindings/v8/V8Binding.h" |
44 #include "bindings/v8/V8Utilities.h" | 43 #include "bindings/v8/V8Utilities.h" |
| 44 #include "bindings/v8/custom/V8ArrayBufferViewCustom.h" |
| 45 #include "bindings/v8/custom/V8Uint8ArrayCustom.h" |
45 #include "core/dom/DOMStringList.h" | 46 #include "core/dom/DOMStringList.h" |
46 #include "modules/indexeddb/IDBKeyRange.h" | 47 #include "modules/indexeddb/IDBKeyRange.h" |
47 #include "modules/speech/SpeechRecognitionError.h" | 48 #include "modules/speech/SpeechRecognitionError.h" |
48 #include "modules/speech/SpeechRecognitionResult.h" | 49 #include "modules/speech/SpeechRecognitionResult.h" |
49 #include "modules/speech/SpeechRecognitionResultList.h" | 50 #include "modules/speech/SpeechRecognitionResultList.h" |
50 #include "wtf/MathExtras.h" | 51 #include "wtf/MathExtras.h" |
51 | 52 |
52 #include "V8TextTrack.h" | 53 #include "V8TextTrack.h" |
53 #include "core/html/track/TrackBase.h" | 54 #include "core/html/track/TrackBase.h" |
54 | 55 |
(...skipping 544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
599 v8::Local<v8::String> key = properties->Get(i)->ToString(); | 600 v8::Local<v8::String> key = properties->Get(i)->ToString(); |
600 if (!options->Has(key)) | 601 if (!options->Has(key)) |
601 continue; | 602 continue; |
602 names.append(toWebCoreString(key)); | 603 names.append(toWebCoreString(key)); |
603 } | 604 } |
604 | 605 |
605 return true; | 606 return true; |
606 } | 607 } |
607 | 608 |
608 } // namespace WebCore | 609 } // namespace WebCore |
OLD | NEW |