| 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 23 matching lines...) Expand all Loading... |
| 34 #include "bindings/core/v8/V8DOMError.h" | 34 #include "bindings/core/v8/V8DOMError.h" |
| 35 #include "bindings/core/v8/V8Element.h" | 35 #include "bindings/core/v8/V8Element.h" |
| 36 #include "bindings/core/v8/V8EventTarget.h" | 36 #include "bindings/core/v8/V8EventTarget.h" |
| 37 #include "bindings/core/v8/V8MediaKeyError.h" | 37 #include "bindings/core/v8/V8MediaKeyError.h" |
| 38 #include "bindings/core/v8/V8MessagePort.h" | 38 #include "bindings/core/v8/V8MessagePort.h" |
| 39 #include "bindings/core/v8/V8Path2D.h" | 39 #include "bindings/core/v8/V8Path2D.h" |
| 40 #include "bindings/core/v8/V8Storage.h" | 40 #include "bindings/core/v8/V8Storage.h" |
| 41 #include "bindings/core/v8/V8TextTrack.h" | 41 #include "bindings/core/v8/V8TextTrack.h" |
| 42 #include "bindings/core/v8/V8VoidCallback.h" | 42 #include "bindings/core/v8/V8VoidCallback.h" |
| 43 #include "bindings/core/v8/V8Window.h" | 43 #include "bindings/core/v8/V8Window.h" |
| 44 #include "bindings/modules/v8/V8Gamepad.h" | |
| 45 #include "bindings/modules/v8/V8Headers.h" | |
| 46 #include "bindings/modules/v8/V8IDBKeyRange.h" | |
| 47 #include "bindings/modules/v8/V8MIDIPort.h" | |
| 48 #include "bindings/modules/v8/V8MediaStream.h" | |
| 49 #include "bindings/modules/v8/V8SpeechRecognitionResult.h" | |
| 50 #include "bindings/modules/v8/V8SpeechRecognitionResultList.h" | |
| 51 #include "core/html/track/TrackBase.h" | 44 #include "core/html/track/TrackBase.h" |
| 52 #include "modules/gamepad/Gamepad.h" | |
| 53 #include "modules/indexeddb/IDBKeyRange.h" | |
| 54 #include "modules/mediastream/MediaStream.h" | |
| 55 #include "modules/speech/SpeechRecognitionResult.h" | |
| 56 #include "modules/speech/SpeechRecognitionResultList.h" | |
| 57 #include "wtf/MathExtras.h" | 45 #include "wtf/MathExtras.h" |
| 58 | 46 |
| 59 namespace blink { | 47 namespace blink { |
| 60 | 48 |
| 61 Dictionary::Dictionary() | 49 Dictionary::Dictionary() |
| 62 : m_isolate(0) | 50 : m_isolate(0) |
| 63 { | 51 { |
| 64 } | 52 } |
| 65 | 53 |
| 66 Dictionary::Dictionary(const v8::Handle<v8::Value>& options, v8::Isolate* isolat
e) | 54 Dictionary::Dictionary(const v8::Handle<v8::Value>& options, v8::Isolate* isolat
e) |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 | 282 |
| 295 return *this; | 283 return *this; |
| 296 } | 284 } |
| 297 | 285 |
| 298 void Dictionary::ConversionContext::throwTypeError(const String& detail) | 286 void Dictionary::ConversionContext::throwTypeError(const String& detail) |
| 299 { | 287 { |
| 300 exceptionState().throwTypeError(detail); | 288 exceptionState().throwTypeError(detail); |
| 301 } | 289 } |
| 302 | 290 |
| 303 } // namespace blink | 291 } // namespace blink |
| OLD | NEW |