chromium/third_party/blink/renderer/modules/mediasource/media_source_handle_impl.cc

// Copyright 2022 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/modules/mediasource/media_source_handle_impl.h"

#include "base/logging.h"
#include "third_party/blink/renderer/core/html/media/media_source_attachment.h"
#include "third_party/blink/renderer/modules/mediasource/handle_attachment_provider.h"
#include "third_party/blink/renderer/platform/bindings/script_wrappable.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"

namespace blink {

MediaSourceHandleImpl::MediaSourceHandleImpl(
    scoped_refptr<HandleAttachmentProvider> attachment_provider,
    String internal_blob_url)
    :{}

MediaSourceHandleImpl::~MediaSourceHandleImpl() {}

scoped_refptr<HandleAttachmentProvider>
MediaSourceHandleImpl::TakeAttachmentProvider() {}

scoped_refptr<MediaSourceAttachment> MediaSourceHandleImpl::TakeAttachment() {}

String MediaSourceHandleImpl::GetInternalBlobURL() {}

void MediaSourceHandleImpl::mark_serialized() {}

void MediaSourceHandleImpl::mark_detached() {}

void MediaSourceHandleImpl::Trace(Visitor* visitor) const {}

}  // namespace blink