| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 String type; | 52 String type; |
| 53 bool ok = DictionaryHelper::get(descriptionInitDict, "type", type); | 53 bool ok = DictionaryHelper::get(descriptionInitDict, "type", type); |
| 54 if (ok && !verifyType(type)) { | 54 if (ok && !verifyType(type)) { |
| 55 exceptionState.throwDOMException(TypeMismatchError, constructIllegalType
ExceptionMessage(type)); | 55 exceptionState.throwDOMException(TypeMismatchError, constructIllegalType
ExceptionMessage(type)); |
| 56 return nullptr; | 56 return nullptr; |
| 57 } | 57 } |
| 58 | 58 |
| 59 String sdp; | 59 String sdp; |
| 60 DictionaryHelper::get(descriptionInitDict, "sdp", sdp); | 60 DictionaryHelper::get(descriptionInitDict, "sdp", sdp); |
| 61 | 61 |
| 62 return new RTCSessionDescription(blink::WebRTCSessionDescription(type, sdp))
; | 62 return new RTCSessionDescription(WebRTCSessionDescription(type, sdp)); |
| 63 } | 63 } |
| 64 | 64 |
| 65 RTCSessionDescription* RTCSessionDescription::create(blink::WebRTCSessionDescrip
tion webSessionDescription) | 65 RTCSessionDescription* RTCSessionDescription::create(WebRTCSessionDescription we
bSessionDescription) |
| 66 { | 66 { |
| 67 return new RTCSessionDescription(webSessionDescription); | 67 return new RTCSessionDescription(webSessionDescription); |
| 68 } | 68 } |
| 69 | 69 |
| 70 RTCSessionDescription::RTCSessionDescription(blink::WebRTCSessionDescription web
SessionDescription) | 70 RTCSessionDescription::RTCSessionDescription(WebRTCSessionDescription webSession
Description) |
| 71 : m_webSessionDescription(webSessionDescription) | 71 : m_webSessionDescription(webSessionDescription) |
| 72 { | 72 { |
| 73 ScriptWrappable::init(this); | 73 ScriptWrappable::init(this); |
| 74 } | 74 } |
| 75 | 75 |
| 76 String RTCSessionDescription::type() | 76 String RTCSessionDescription::type() |
| 77 { | 77 { |
| 78 return m_webSessionDescription.type(); | 78 return m_webSessionDescription.type(); |
| 79 } | 79 } |
| 80 | 80 |
| 81 void RTCSessionDescription::setType(const String& type, ExceptionState& exceptio
nState) | 81 void RTCSessionDescription::setType(const String& type, ExceptionState& exceptio
nState) |
| 82 { | 82 { |
| 83 if (verifyType(type)) | 83 if (verifyType(type)) |
| 84 m_webSessionDescription.setType(type); | 84 m_webSessionDescription.setType(type); |
| 85 else | 85 else |
| 86 exceptionState.throwDOMException(TypeMismatchError, constructIllegalType
ExceptionMessage(type)); | 86 exceptionState.throwDOMException(TypeMismatchError, constructIllegalType
ExceptionMessage(type)); |
| 87 } | 87 } |
| 88 | 88 |
| 89 String RTCSessionDescription::sdp() | 89 String RTCSessionDescription::sdp() |
| 90 { | 90 { |
| 91 return m_webSessionDescription.sdp(); | 91 return m_webSessionDescription.sdp(); |
| 92 } | 92 } |
| 93 | 93 |
| 94 void RTCSessionDescription::setSdp(const String& sdp) | 94 void RTCSessionDescription::setSdp(const String& sdp) |
| 95 { | 95 { |
| 96 m_webSessionDescription.setSDP(sdp); | 96 m_webSessionDescription.setSDP(sdp); |
| 97 } | 97 } |
| 98 | 98 |
| 99 blink::WebRTCSessionDescription RTCSessionDescription::webSessionDescription() | 99 WebRTCSessionDescription RTCSessionDescription::webSessionDescription() |
| 100 { | 100 { |
| 101 return m_webSessionDescription; | 101 return m_webSessionDescription; |
| 102 } | 102 } |
| 103 | 103 |
| 104 } // namespace blink | 104 } // namespace blink |
| OLD | NEW |