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 23 matching lines...) Expand all Loading... |
34 #include "core/dom/ActiveDOMObject.h" | 34 #include "core/dom/ActiveDOMObject.h" |
35 #include "platform/heap/Handle.h" | 35 #include "platform/heap/Handle.h" |
36 #include "platform/mediastream/RTCSessionDescriptionRequest.h" | 36 #include "platform/mediastream/RTCSessionDescriptionRequest.h" |
37 #include "wtf/PassOwnPtr.h" | 37 #include "wtf/PassOwnPtr.h" |
38 #include "wtf/PassRefPtr.h" | 38 #include "wtf/PassRefPtr.h" |
39 | 39 |
40 namespace blink { | 40 namespace blink { |
41 class WebRTCSessionDescription; | 41 class WebRTCSessionDescription; |
42 } | 42 } |
43 | 43 |
44 namespace WebCore { | 44 namespace blink { |
45 | 45 |
46 class RTCErrorCallback; | 46 class RTCErrorCallback; |
47 class RTCPeerConnection; | 47 class RTCPeerConnection; |
48 class RTCSessionDescriptionCallback; | 48 class RTCSessionDescriptionCallback; |
49 | 49 |
50 class RTCSessionDescriptionRequestImpl FINAL : public RTCSessionDescriptionReque
st, public ActiveDOMObject { | 50 class RTCSessionDescriptionRequestImpl FINAL : public RTCSessionDescriptionReque
st, public ActiveDOMObject { |
51 public: | 51 public: |
52 static PassRefPtr<RTCSessionDescriptionRequestImpl> create(ExecutionContext*
, RTCPeerConnection*, PassOwnPtr<RTCSessionDescriptionCallback>, PassOwnPtr<RTCE
rrorCallback>); | 52 static PassRefPtr<RTCSessionDescriptionRequestImpl> create(ExecutionContext*
, RTCPeerConnection*, PassOwnPtr<RTCSessionDescriptionCallback>, PassOwnPtr<RTCE
rrorCallback>); |
53 virtual ~RTCSessionDescriptionRequestImpl(); | 53 virtual ~RTCSessionDescriptionRequestImpl(); |
54 | 54 |
55 virtual void requestSucceeded(const blink::WebRTCSessionDescription&) OVERRI
DE; | 55 virtual void requestSucceeded(const blink::WebRTCSessionDescription&) OVERRI
DE; |
56 virtual void requestFailed(const String& error) OVERRIDE; | 56 virtual void requestFailed(const String& error) OVERRIDE; |
57 | 57 |
58 // ActiveDOMObject | 58 // ActiveDOMObject |
59 virtual void stop() OVERRIDE; | 59 virtual void stop() OVERRIDE; |
60 | 60 |
61 private: | 61 private: |
62 RTCSessionDescriptionRequestImpl(ExecutionContext*, RTCPeerConnection*, Pass
OwnPtr<RTCSessionDescriptionCallback>, PassOwnPtr<RTCErrorCallback>); | 62 RTCSessionDescriptionRequestImpl(ExecutionContext*, RTCPeerConnection*, Pass
OwnPtr<RTCSessionDescriptionCallback>, PassOwnPtr<RTCErrorCallback>); |
63 | 63 |
64 void clear(); | 64 void clear(); |
65 | 65 |
66 OwnPtr<RTCSessionDescriptionCallback> m_successCallback; | 66 OwnPtr<RTCSessionDescriptionCallback> m_successCallback; |
67 OwnPtr<RTCErrorCallback> m_errorCallback; | 67 OwnPtr<RTCErrorCallback> m_errorCallback; |
68 | 68 |
69 Persistent<RTCPeerConnection> m_requester; | 69 Persistent<RTCPeerConnection> m_requester; |
70 }; | 70 }; |
71 | 71 |
72 } // namespace WebCore | 72 } // namespace blink |
73 | 73 |
74 #endif // RTCSessionDescriptionRequestImpl_h | 74 #endif // RTCSessionDescriptionRequestImpl_h |
OLD | NEW |