| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 | 76 |
| 77 void RTCSessionDescriptionRequestImpl::requestFailed(const String& error) { | 77 void RTCSessionDescriptionRequestImpl::requestFailed(const String& error) { |
| 78 bool shouldFireCallback = | 78 bool shouldFireCallback = |
| 79 m_requester ? m_requester->shouldFireDefaultCallbacks() : false; | 79 m_requester ? m_requester->shouldFireDefaultCallbacks() : false; |
| 80 if (shouldFireCallback && m_errorCallback) | 80 if (shouldFireCallback && m_errorCallback) |
| 81 m_errorCallback->handleEvent(DOMException::create(OperationError, error)); | 81 m_errorCallback->handleEvent(DOMException::create(OperationError, error)); |
| 82 | 82 |
| 83 clear(); | 83 clear(); |
| 84 } | 84 } |
| 85 | 85 |
| 86 void RTCSessionDescriptionRequestImpl::contextDestroyed() { | 86 void RTCSessionDescriptionRequestImpl::contextDestroyed(ExecutionContext*) { |
| 87 clear(); | 87 clear(); |
| 88 } | 88 } |
| 89 | 89 |
| 90 void RTCSessionDescriptionRequestImpl::clear() { | 90 void RTCSessionDescriptionRequestImpl::clear() { |
| 91 m_successCallback.clear(); | 91 m_successCallback.clear(); |
| 92 m_errorCallback.clear(); | 92 m_errorCallback.clear(); |
| 93 m_requester.clear(); | 93 m_requester.clear(); |
| 94 } | 94 } |
| 95 | 95 |
| 96 DEFINE_TRACE(RTCSessionDescriptionRequestImpl) { | 96 DEFINE_TRACE(RTCSessionDescriptionRequestImpl) { |
| 97 visitor->trace(m_successCallback); | 97 visitor->trace(m_successCallback); |
| 98 visitor->trace(m_errorCallback); | 98 visitor->trace(m_errorCallback); |
| 99 visitor->trace(m_requester); | 99 visitor->trace(m_requester); |
| 100 RTCSessionDescriptionRequest::trace(visitor); | 100 RTCSessionDescriptionRequest::trace(visitor); |
| 101 ContextLifecycleObserver::trace(visitor); | 101 ContextLifecycleObserver::trace(visitor); |
| 102 } | 102 } |
| 103 | 103 |
| 104 } // namespace blink | 104 } // namespace blink |
| OLD | NEW |