| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 { | 55 { |
| 56 } | 56 } |
| 57 | 57 |
| 58 RTCSessionDescriptionRequestImpl::~RTCSessionDescriptionRequestImpl() | 58 RTCSessionDescriptionRequestImpl::~RTCSessionDescriptionRequestImpl() |
| 59 { | 59 { |
| 60 } | 60 } |
| 61 | 61 |
| 62 void RTCSessionDescriptionRequestImpl::requestSucceeded(const blink::WebRTCSessi
onDescription& webSessionDescription) | 62 void RTCSessionDescriptionRequestImpl::requestSucceeded(const blink::WebRTCSessi
onDescription& webSessionDescription) |
| 63 { | 63 { |
| 64 if (m_successCallback) { | 64 if (m_successCallback) { |
| 65 RefPtr<RTCSessionDescription> sessionDescription = RTCSessionDescription
::create(webSessionDescription); | 65 RefPtrWillBeRawPtr<RTCSessionDescription> sessionDescription = RTCSessio
nDescription::create(webSessionDescription); |
| 66 m_successCallback->handleEvent(sessionDescription.get()); | 66 m_successCallback->handleEvent(sessionDescription.get()); |
| 67 } | 67 } |
| 68 | 68 |
| 69 clear(); | 69 clear(); |
| 70 } | 70 } |
| 71 | 71 |
| 72 void RTCSessionDescriptionRequestImpl::requestFailed(const String& error) | 72 void RTCSessionDescriptionRequestImpl::requestFailed(const String& error) |
| 73 { | 73 { |
| 74 if (m_errorCallback) | 74 if (m_errorCallback) |
| 75 m_errorCallback->handleEvent(error); | 75 m_errorCallback->handleEvent(error); |
| 76 | 76 |
| 77 clear(); | 77 clear(); |
| 78 } | 78 } |
| 79 | 79 |
| 80 void RTCSessionDescriptionRequestImpl::stop() | 80 void RTCSessionDescriptionRequestImpl::stop() |
| 81 { | 81 { |
| 82 clear(); | 82 clear(); |
| 83 } | 83 } |
| 84 | 84 |
| 85 void RTCSessionDescriptionRequestImpl::clear() | 85 void RTCSessionDescriptionRequestImpl::clear() |
| 86 { | 86 { |
| 87 m_successCallback.clear(); | 87 m_successCallback.clear(); |
| 88 m_errorCallback.clear(); | 88 m_errorCallback.clear(); |
| 89 } | 89 } |
| 90 | 90 |
| 91 } // namespace WebCore | 91 } // namespace WebCore |
| OLD | NEW |