OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2013 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
261 create_session_description_requests_.push(request); | 261 create_session_description_requests_.push(request); |
262 } else { | 262 } else { |
263 ASSERT(certificate_request_state_ == CERTIFICATE_SUCCEEDED || | 263 ASSERT(certificate_request_state_ == CERTIFICATE_SUCCEEDED || |
264 certificate_request_state_ == CERTIFICATE_NOT_NEEDED); | 264 certificate_request_state_ == CERTIFICATE_NOT_NEEDED); |
265 InternalCreateOffer(request); | 265 InternalCreateOffer(request); |
266 } | 266 } |
267 } | 267 } |
268 | 268 |
269 void WebRtcSessionDescriptionFactory::CreateAnswer( | 269 void WebRtcSessionDescriptionFactory::CreateAnswer( |
270 CreateSessionDescriptionObserver* observer, | 270 CreateSessionDescriptionObserver* observer, |
271 const MediaConstraintsInterface* constraints, | |
272 const cricket::MediaSessionOptions& session_options) { | 271 const cricket::MediaSessionOptions& session_options) { |
273 std::string error = "CreateAnswer"; | 272 std::string error = "CreateAnswer"; |
274 if (certificate_request_state_ == CERTIFICATE_FAILED) { | 273 if (certificate_request_state_ == CERTIFICATE_FAILED) { |
275 error += kFailedDueToIdentityFailed; | 274 error += kFailedDueToIdentityFailed; |
276 LOG(LS_ERROR) << error; | 275 LOG(LS_ERROR) << error; |
277 PostCreateSessionDescriptionFailed(observer, error); | 276 PostCreateSessionDescriptionFailed(observer, error); |
278 return; | 277 return; |
279 } | 278 } |
280 if (!session_->remote_description()) { | 279 if (!session_->remote_description()) { |
281 error += " can't be called before SetRemoteDescription."; | 280 error += " can't be called before SetRemoteDescription."; |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
501 if (create_session_description_requests_.front().type == | 500 if (create_session_description_requests_.front().type == |
502 CreateSessionDescriptionRequest::kOffer) { | 501 CreateSessionDescriptionRequest::kOffer) { |
503 InternalCreateOffer(create_session_description_requests_.front()); | 502 InternalCreateOffer(create_session_description_requests_.front()); |
504 } else { | 503 } else { |
505 InternalCreateAnswer(create_session_description_requests_.front()); | 504 InternalCreateAnswer(create_session_description_requests_.front()); |
506 } | 505 } |
507 create_session_description_requests_.pop(); | 506 create_session_description_requests_.pop(); |
508 } | 507 } |
509 } | 508 } |
510 } // namespace webrtc | 509 } // namespace webrtc |
OLD | NEW |