| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 m_requester && m_requester->shouldFireDefaultCallbacks(); | 75 m_requester && m_requester->shouldFireDefaultCallbacks(); |
| 76 if (shouldFireCallback && m_errorCallback.get()) { | 76 if (shouldFireCallback && m_errorCallback.get()) { |
| 77 // TODO(guidou): The error code should come from the content layer. See | 77 // TODO(guidou): The error code should come from the content layer. See |
| 78 // crbug.com/589455 | 78 // crbug.com/589455 |
| 79 m_errorCallback->handleEvent(DOMException::create(OperationError, error)); | 79 m_errorCallback->handleEvent(DOMException::create(OperationError, error)); |
| 80 } | 80 } |
| 81 | 81 |
| 82 clear(); | 82 clear(); |
| 83 } | 83 } |
| 84 | 84 |
| 85 void RTCVoidRequestImpl::contextDestroyed() { | 85 void RTCVoidRequestImpl::contextDestroyed(ExecutionContext*) { |
| 86 clear(); | 86 clear(); |
| 87 } | 87 } |
| 88 | 88 |
| 89 void RTCVoidRequestImpl::clear() { | 89 void RTCVoidRequestImpl::clear() { |
| 90 m_successCallback.clear(); | 90 m_successCallback.clear(); |
| 91 m_errorCallback.clear(); | 91 m_errorCallback.clear(); |
| 92 m_requester.clear(); | 92 m_requester.clear(); |
| 93 } | 93 } |
| 94 | 94 |
| 95 DEFINE_TRACE(RTCVoidRequestImpl) { | 95 DEFINE_TRACE(RTCVoidRequestImpl) { |
| 96 visitor->trace(m_successCallback); | 96 visitor->trace(m_successCallback); |
| 97 visitor->trace(m_errorCallback); | 97 visitor->trace(m_errorCallback); |
| 98 visitor->trace(m_requester); | 98 visitor->trace(m_requester); |
| 99 RTCVoidRequest::trace(visitor); | 99 RTCVoidRequest::trace(visitor); |
| 100 ContextLifecycleObserver::trace(visitor); | 100 ContextLifecycleObserver::trace(visitor); |
| 101 } | 101 } |
| 102 | 102 |
| 103 } // namespace blink | 103 } // namespace blink |
| OLD | NEW |