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

Bug: chromium:926235 Change-Id: I66c10ab3df38adf87152d1f18cc8162afedca7e4 Reviewed-on: https://webrtc-review.googlesource.com/c/123560 Commit-Queue: Tommi <tommi@webrtc.org> Reviewed-by: Tommi <tommi@webrtc.org> Cr-Commit-Position: refs/heads/master@{#26780}
19 lines
610 B
C++
19 lines
610 B
C++
/*
|
|
* Copyright 2015 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 "rtc_base/async_resolver_interface.h"
|
|
|
|
namespace rtc {
|
|
|
|
AsyncResolverInterface::AsyncResolverInterface() {}
|
|
|
|
AsyncResolverInterface::~AsyncResolverInterface() = default;
|
|
|
|
} // namespace rtc
|