// Copyright 2015 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "third_party/blink/renderer/platform/video_capture/video_capturer_source.h" #include "base/functional/callback_helpers.h" namespace blink { // TODO(mcasas): VideoCapturerSource is implemented in other .dll(s) (e.g. // content) in Windows component build. The current compiler fails to generate // object files for this destructor if it's defined in the header file and that // breaks linking. Consider removing this file when the compiler+linker is able // to generate symbols across linking units. VideoCapturerSource::~VideoCapturerSource() = default; media::VideoCaptureFeedbackCB VideoCapturerSource::GetFeedbackCallback() const { … } } // namespace blink