| 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 are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 #include "config.h" | 31 #include "config.h" |
| 32 | 32 |
| 33 #include "public/platform/WebRTCVoidRequest.h" | 33 #include "public/platform/WebRTCVoidRequest.h" |
| 34 | 34 |
| 35 #include "platform/mediastream/RTCVoidRequest.h" | 35 #include "platform/mediastream/RTCVoidRequest.h" |
| 36 #include "wtf/PassOwnPtr.h" | 36 #include "wtf/PassOwnPtr.h" |
| 37 | 37 |
| 38 namespace blink { | 38 namespace blink { |
| 39 | 39 |
| 40 namespace { | |
| 41 | |
| 42 class ExtraDataContainer : public RTCVoidRequest::ExtraData { | |
| 43 public: | |
| 44 ExtraDataContainer(PassOwnPtr<WebRTCVoidRequest::ExtraData> extraData) : m_e
xtraData(extraData) { } | |
| 45 | |
| 46 WebRTCVoidRequest::ExtraData* extraData() { return m_extraData.get(); } | |
| 47 | |
| 48 private: | |
| 49 OwnPtr<WebRTCVoidRequest::ExtraData> m_extraData; | |
| 50 }; | |
| 51 | |
| 52 } // namespace | |
| 53 | |
| 54 WebRTCVoidRequest::WebRTCVoidRequest(RTCVoidRequest* constraints) | 40 WebRTCVoidRequest::WebRTCVoidRequest(RTCVoidRequest* constraints) |
| 55 : m_private(constraints) | 41 : m_private(constraints) |
| 56 { | 42 { |
| 57 } | 43 } |
| 58 | 44 |
| 59 void WebRTCVoidRequest::assign(const WebRTCVoidRequest& other) | 45 void WebRTCVoidRequest::assign(const WebRTCVoidRequest& other) |
| 60 { | 46 { |
| 61 m_private = other.m_private; | 47 m_private = other.m_private; |
| 62 } | 48 } |
| 63 | 49 |
| 64 void WebRTCVoidRequest::reset() | 50 void WebRTCVoidRequest::reset() |
| 65 { | 51 { |
| 66 m_private.reset(); | 52 m_private.reset(); |
| 67 } | 53 } |
| 68 | 54 |
| 69 void WebRTCVoidRequest::requestSucceeded() const | 55 void WebRTCVoidRequest::requestSucceeded() const |
| 70 { | 56 { |
| 71 ASSERT(m_private.get()); | 57 ASSERT(m_private.get()); |
| 72 m_private->requestSucceeded(); | 58 m_private->requestSucceeded(); |
| 73 } | 59 } |
| 74 | 60 |
| 75 void WebRTCVoidRequest::requestFailed(const WebString& error) const | 61 void WebRTCVoidRequest::requestFailed(const WebString& error) const |
| 76 { | 62 { |
| 77 ASSERT(m_private.get()); | 63 ASSERT(m_private.get()); |
| 78 m_private->requestFailed(error); | 64 m_private->requestFailed(error); |
| 79 } | 65 } |
| 80 | 66 |
| 81 WebRTCVoidRequest::ExtraData* WebRTCVoidRequest::extraData() const | |
| 82 { | |
| 83 RTCVoidRequest::ExtraData* data = m_private->extraData(); | |
| 84 if (!data) | |
| 85 return 0; | |
| 86 return static_cast<ExtraDataContainer*>(data)->extraData(); | |
| 87 } | |
| 88 | |
| 89 void WebRTCVoidRequest::setExtraData(ExtraData* extraData) | |
| 90 { | |
| 91 m_private->setExtraData(adoptPtr(new ExtraDataContainer(adoptPtr(extraData))
)); | |
| 92 } | |
| 93 | |
| 94 } // namespace blink | 67 } // namespace blink |
| 95 | |
| OLD | NEW |