mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 13:50:40 +01:00

In this case, clang style forbids inline definitions for virtual functions. Bug: webrtc:163 Change-Id: Id924cadb0a1d32e12cdb691c57fbda5f5b022638 Reviewed-on: https://webrtc-review.googlesource.com/29441 Reviewed-by: Peter Thatcher <pthatcher@webrtc.org> Reviewed-by: Zhi Huang <zhihuang@webrtc.org> Commit-Queue: Steve Anton <steveanton@webrtc.org> Cr-Commit-Position: refs/heads/master@{#21126}
24 lines
674 B
C++
24 lines
674 B
C++
/*
|
|
* Copyright 2017 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include "api/jsep.h"
|
|
|
|
namespace webrtc {
|
|
|
|
std::string IceCandidateInterface::server_url() const {
|
|
return "";
|
|
}
|
|
|
|
size_t SessionDescriptionInterface::RemoveCandidates(
|
|
const std::vector<cricket::Candidate>& candidates) {
|
|
return 0;
|
|
}
|
|
|
|
} // namespace webrtc
|