chromium/third_party/blink/renderer/modules/file_system_access/file_system_observation_collection.cc

// Copyright 2024 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/file_system_access/file_system_observation_collection.h"

#include "third_party/blink/renderer/core/execution_context/execution_context.h"
#include "third_party/blink/renderer/modules/file_system_access/file_system_observation.h"
#include "third_party/blink/renderer/modules/file_system_access/file_system_observer.h"

namespace blink {

// static
const char FileSystemObservationCollection::kSupplementName[] =;

// static
FileSystemObservationCollection* FileSystemObservationCollection::From(
    ExecutionContext* context) {}

FileSystemObservationCollection::FileSystemObservationCollection(
    ExecutionContext& context)
    :{}

void FileSystemObservationCollection::AddObservation(
    FileSystemObserver* observer,
    mojo::PendingReceiver<mojom::blink::FileSystemAccessObserver>
        observer_receiver) {}

void FileSystemObservationCollection::RemoveObservation(
    FileSystemObserver* observer,
    FileSystemObservation* observation) {}

void FileSystemObservationCollection::RemoveObserver(
    FileSystemObserver* observer) {}

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

}  // namespace blink