| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 bool get(const String&, ScriptValue&) const; | 71 bool get(const String&, ScriptValue&) const; |
| 72 bool get(const String&, short&) const; | 72 bool get(const String&, short&) const; |
| 73 bool get(const String&, unsigned short&) const; | 73 bool get(const String&, unsigned short&) const; |
| 74 bool get(const String&, unsigned&) const; | 74 bool get(const String&, unsigned&) const; |
| 75 bool get(const String&, unsigned long&) const; | 75 bool get(const String&, unsigned long&) const; |
| 76 bool get(const String&, unsigned long long&) const; | 76 bool get(const String&, unsigned long long&) const; |
| 77 bool get(const String&, RefPtr<DOMWindow>&) const; | 77 bool get(const String&, RefPtr<DOMWindow>&) const; |
| 78 bool get(const String&, RefPtr<Storage>&) const; | 78 bool get(const String&, RefPtr<Storage>&) const; |
| 79 bool get(const String&, MessagePortArray&) const; | 79 bool get(const String&, MessagePortArray&) const; |
| 80 bool get(const String&, RefPtr<Uint8Array>&) const; | 80 bool get(const String&, RefPtr<Uint8Array>&) const; |
| 81 bool get(const String&, RefPtr<ArrayBufferView>&) const; |
| 81 bool get(const String&, RefPtr<MIDIPort>&) const; | 82 bool get(const String&, RefPtr<MIDIPort>&) const; |
| 82 bool get(const String&, RefPtr<MediaKeyError>&) const; | 83 bool get(const String&, RefPtr<MediaKeyError>&) const; |
| 83 bool get(const String&, RefPtr<TrackBase>&) const; | 84 bool get(const String&, RefPtr<TrackBase>&) const; |
| 84 bool get(const String&, RefPtr<SpeechRecognitionError>&) const; | 85 bool get(const String&, RefPtr<SpeechRecognitionError>&) const; |
| 85 bool get(const String&, RefPtr<SpeechRecognitionResult>&) const; | 86 bool get(const String&, RefPtr<SpeechRecognitionResult>&) const; |
| 86 bool get(const String&, RefPtr<SpeechRecognitionResultList>&) const; | 87 bool get(const String&, RefPtr<SpeechRecognitionResultList>&) const; |
| 87 bool get(const String&, RefPtr<MediaStream>&) const; | 88 bool get(const String&, RefPtr<MediaStream>&) const; |
| 88 bool get(const String&, RefPtr<EventTarget>&) const; | 89 bool get(const String&, RefPtr<EventTarget>&) const; |
| 89 bool get(const String&, HashSet<AtomicString>&) const; | 90 bool get(const String&, HashSet<AtomicString>&) const; |
| 90 bool get(const String&, Dictionary&) const; | 91 bool get(const String&, Dictionary&) const; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 109 static void* operator new[](size_t); | 110 static void* operator new[](size_t); |
| 110 static void operator delete(void *); | 111 static void operator delete(void *); |
| 111 | 112 |
| 112 v8::Local<v8::Value> m_options; | 113 v8::Local<v8::Value> m_options; |
| 113 v8::Isolate* m_isolate; | 114 v8::Isolate* m_isolate; |
| 114 }; | 115 }; |
| 115 | 116 |
| 116 } | 117 } |
| 117 | 118 |
| 118 #endif // Dictionary_h | 119 #endif // Dictionary_h |
| OLD | NEW |